diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/make-docfile.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index d913fbaf2c9..92d06473a80 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2004-12-26 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp> | ||
| 2 | |||
| 3 | * make-docfile.c: Include stdlib.h even if WINDOWSNT is not | ||
| 4 | defined. | ||
| 5 | |||
| 1 | 2004-12-15 Andreas Schwab <schwab@suse.de> | 6 | 2004-12-15 Andreas Schwab <schwab@suse.de> |
| 2 | 7 | ||
| 3 | * etags.c (main): Fix typo in conversion of LONG_OPTIONS from | 8 | * etags.c (main): Fix typo in conversion of LONG_OPTIONS from |
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index e502061b759..02ddbabe7a7 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -43,11 +43,11 @@ Boston, MA 02111-1307, USA. */ | |||
| 43 | #undef chdir | 43 | #undef chdir |
| 44 | 44 | ||
| 45 | #include <stdio.h> | 45 | #include <stdio.h> |
| 46 | #include <stdlib.h> | ||
| 46 | #ifdef MSDOS | 47 | #ifdef MSDOS |
| 47 | #include <fcntl.h> | 48 | #include <fcntl.h> |
| 48 | #endif /* MSDOS */ | 49 | #endif /* MSDOS */ |
| 49 | #ifdef WINDOWSNT | 50 | #ifdef WINDOWSNT |
| 50 | #include <stdlib.h> | ||
| 51 | #include <fcntl.h> | 51 | #include <fcntl.h> |
| 52 | #include <direct.h> | 52 | #include <direct.h> |
| 53 | #endif /* WINDOWSNT */ | 53 | #endif /* WINDOWSNT */ |