diff options
| author | Karl Heuer | 1995-06-08 20:13:45 +0000 |
|---|---|---|
| committer | Karl Heuer | 1995-06-08 20:13:45 +0000 |
| commit | 2d1985a2e195b16945c304863d1c452099561324 (patch) | |
| tree | a933a3e59eb3eec0852eef8d7db2e529bf416a0b /lib-src | |
| parent | 76fbc89437bdc7c425e44f0181942612e6af2cb4 (diff) | |
| download | emacs-2d1985a2e195b16945c304863d1c452099561324.tar.gz emacs-2d1985a2e195b16945c304863d1c452099561324.zip | |
[MSDOS]: #undef chdir.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/make-docfile.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index e45fd75b3a1..6f3c799c937 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -56,6 +56,12 @@ int scan_file (); | |||
| 56 | int scan_lisp_file (); | 56 | int scan_lisp_file (); |
| 57 | int scan_c_file (); | 57 | int scan_c_file (); |
| 58 | 58 | ||
| 59 | #ifdef MSDOS | ||
| 60 | /* s/msdos.h defines this as sys_chdir, but we're not linking with the | ||
| 61 | file where that function is defined. */ | ||
| 62 | #undef chdir | ||
| 63 | #endif | ||
| 64 | |||
| 59 | /* Stdio stream for output to the DOC file. */ | 65 | /* Stdio stream for output to the DOC file. */ |
| 60 | FILE *outfile; | 66 | FILE *outfile; |
| 61 | 67 | ||