make-docfile.c: Include stdlib.h even if WINDOWSNT is not
authorSteven Tamm <steventamm@mac.com>
Mon, 27 Dec 2004 17:22:01 +0000 (17:22 +0000)
committerSteven Tamm <steventamm@mac.com>
Mon, 27 Dec 2004 17:22:01 +0000 (17:22 +0000)
defined.

lib-src/ChangeLog
lib-src/make-docfile.c

index d913fba..92d0647 100644 (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
index e502061..02ddbab 100644 (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 */