summaryrefslogtreecommitdiff
path: root/lib-src
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-06-08 20:13:45 +0000
committerKarl Heuer <kwzh@gnu.org>1995-06-08 20:13:45 +0000
commit2689c0c66e9df298d62d31062b33d63f3fe0512a (patch)
tree01203c1719609ad83f2e21703c53b36630dfcb72 /lib-src
parent635a3d6fc15a43810d0b2dbeaf30e693cc96883f (diff)
downloademacs-2689c0c66e9df298d62d31062b33d63f3fe0512a.tar.gz
[MSDOS]: #undef chdir.
Diffstat (limited to 'lib-src')
-rw-r--r--lib-src/make-docfile.c6
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 ();
int scan_lisp_file ();
int scan_c_file ();
+#ifdef MSDOS
+/* s/msdos.h defines this as sys_chdir, but we're not linking with the
+ file where that function is defined. */
+#undef chdir
+#endif
+
/* Stdio stream for output to the DOC file. */
FILE *outfile;