From: Richard M. Stallman Date: Fri, 26 Nov 1993 10:40:27 +0000 (+0000) Subject: (closedir): Test BROKEN_CLOSEDIR, not INTERRUPTIBLE_CLOSE. X-Git-Tag: emacs-19.34~10662 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1db6401ccd927e360dc5fc4376a6c7b547dfd4d8;p=emacs.git (closedir): Test BROKEN_CLOSEDIR, not INTERRUPTIBLE_CLOSE. --- diff --git a/src/sysdep.c b/src/sysdep.c index 94e58a354cb..83c6d84fd54 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -2989,7 +2989,7 @@ char *sys_siglist[NSIG + 1] = #include -#if defined(INTERRUPTIBLE_CLOSE) || !defined(HAVE_CLOSEDIR) +#if defined(BROKEN_CLOSEDIR) || !defined(HAVE_CLOSEDIR) int closedir (dirp) @@ -3009,7 +3009,7 @@ closedir (dirp) return rtnval; } -#endif /* INTERRUPTIBLE_CLOSE or not HAVE_CLOSEDIR */ +#endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */ #endif /* SYSV_SYSTEM_DIR */ #ifdef NONSYSTEM_DIR_LIBRARY