Mercurial > emacs
diff src/sysdep.c @ 5189:af88471e6799
(closedir): Test BROKEN_CLOSEDIR, not INTERRUPTIBLE_CLOSE.
| author | Richard M. Stallman <rms@gnu.org> |
|---|---|
| date | Fri, 26 Nov 1993 10:40:27 +0000 |
| parents | 6ac5c999a7cc |
| children | 1846f03ac8f3 |
line wrap: on
line diff
--- a/src/sysdep.c Fri Nov 26 06:35:00 1993 +0000 +++ b/src/sysdep.c Fri Nov 26 10:40:27 1993 +0000 @@ -2989,7 +2989,7 @@ #include <dirent.h> -#if defined(INTERRUPTIBLE_CLOSE) || !defined(HAVE_CLOSEDIR) +#if defined(BROKEN_CLOSEDIR) || !defined(HAVE_CLOSEDIR) int closedir (dirp) @@ -3009,7 +3009,7 @@ return rtnval; } -#endif /* INTERRUPTIBLE_CLOSE or not HAVE_CLOSEDIR */ +#endif /* BROKEN_CLOSEDIR or not HAVE_CLOSEDIR */ #endif /* SYSV_SYSTEM_DIR */ #ifdef NONSYSTEM_DIR_LIBRARY
