make-docfile.c: Include stdlib.h even if WINDOWSNT is not

defined.
This commit is contained in:
Steven Tamm 2004-12-27 17:22:01 +00:00
parent a1b0c2a764
commit e6973a25b6
2 changed files with 6 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* make-docfile.c: Include stdlib.h even if WINDOWSNT is not
defined.
2004-12-15 Andreas Schwab <schwab@suse.de>
* etags.c (main): Fix typo in conversion of LONG_OPTIONS from

View file

@ -43,11 +43,11 @@ Boston, MA 02111-1307, USA. */
#undef chdir
#include <stdio.h>
#include <stdlib.h>
#ifdef MSDOS
#include <fcntl.h>
#endif /* MSDOS */
#ifdef WINDOWSNT
#include <stdlib.h>
#include <fcntl.h>
#include <direct.h>
#endif /* WINDOWSNT */