]> git.eshelyaron.com Git - emacs.git/commitdiff
[MSDOS]: #undef chdir.
authorKarl Heuer <kwzh@gnu.org>
Thu, 8 Jun 1995 20:13:45 +0000 (20:13 +0000)
committerKarl Heuer <kwzh@gnu.org>
Thu, 8 Jun 1995 20:13:45 +0000 (20:13 +0000)
lib-src/make-docfile.c

index e45fd75b3a1a8c0715b48bef42fe10305bee3b5c..6f3c799c9372cc98ee2b34c8c0c7e8cae5b53a59 100644 (file)
@@ -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;