dottynips.cc, emptiness_check.cc: Include ctsdlib for exit()

This commit is contained in:
Alexandre Duret-Lutz 2008-06-11 17:14:44 +02:00
parent dc0005f4e1
commit 994482ed2c
3 changed files with 5 additions and 1 deletions

View file

@ -1,5 +1,8 @@
2008-06-11 Alexandre Duret-Lutz <adl@lrde.epita.fr> 2008-06-11 Alexandre Duret-Lutz <adl@lrde.epita.fr>
* iface/nips/dottynips.cc: Include ctsdlib for exit().
* iface/nips/emptiness_check.cc: Likewise.
* src/eltlparse/eltlparse.yy: Include limits.h for INT_MIN and * src/eltlparse/eltlparse.yy: Include limits.h for INT_MIN and
INT_MAX. INT_MAX.

View file

@ -19,6 +19,7 @@
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA // Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA. // 02111-1307, USA.
#include <cstdlib>
#include "nips.hh" #include "nips.hh"
#include "tgbaalgos/dotty.hh" #include "tgbaalgos/dotty.hh"

View file

@ -19,6 +19,7 @@
// Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA // Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
// 02111-1307, USA. // 02111-1307, USA.
#include <cstdlib>
#include <iostream> #include <iostream>
#include <cassert> #include <cassert>
#include <cstring> #include <cstring>
@ -126,4 +127,3 @@ main(int argc, char **argv)
std::cerr << e << std::endl; std::cerr << e << std::endl;
return 1; return 1;
} }