Mercurial > emacs
changeset 59143:9c2cefd15efd
make-docfile.c: Include stdlib.h even if WINDOWSNT is not
defined.
author | Steven Tamm <steventamm@mac.com> |
---|---|
date | Mon, 27 Dec 2004 17:22:01 +0000 |
parents | 0265d8ff8119 |
children | 8d9ea622c741 |
files | lib-src/ChangeLog lib-src/make-docfile.c |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lib-src/ChangeLog Mon Dec 27 17:18:28 2004 +0000 +++ b/lib-src/ChangeLog Mon Dec 27 17:22:01 2004 +0000 @@ -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
--- a/lib-src/make-docfile.c Mon Dec 27 17:18:28 2004 +0000 +++ b/lib-src/make-docfile.c Mon Dec 27 17:22:01 2004 +0000 @@ -43,11 +43,11 @@ #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 */