make-docfile.c: Include stdlib.h even if WINDOWSNT is not
defined.
This commit is contained in:
parent
a1b0c2a764
commit
e6973a25b6
2 changed files with 6 additions and 1 deletions
|
@ -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
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Add table
Reference in a new issue