changeset 12134:cf65209088d6

[MSDOS]: #undef chdir.
author Karl Heuer <kwzh@gnu.org>
date Thu, 08 Jun 1995 20:13:45 +0000
parents e7d81d04043b
children b4ff4bf436e1
files lib-src/make-docfile.c
diffstat 1 files changed, 6 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/make-docfile.c	Thu Jun 08 19:57:56 1995 +0000
+++ b/lib-src/make-docfile.c	Thu Jun 08 20:13:45 1995 +0000
@@ -56,6 +56,12 @@
 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;