diff options
author | Richard M. Stallman <rms@gnu.org> | 1997-09-02 04:59:45 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1997-09-02 04:59:45 +0000 |
commit | 3e4a18035df9a598f80cbc6b2e190121e71bd426 (patch) | |
tree | 75d665848588d5fe6192657f90ea918bb626213f /src/unexnext.c | |
parent | 1907b8e60e7d5814898a310736ac64f3d79acfff (diff) | |
download | emacs-3e4a18035df9a598f80cbc6b2e190121e71bd426.tar.gz |
Include unistd.h instead of libc.h.
Diffstat (limited to 'src/unexnext.c')
-rw-r--r-- | src/unexnext.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/unexnext.c b/src/unexnext.c index 1cf41ca05a1..e250245088c 100644 --- a/src/unexnext.c +++ b/src/unexnext.c @@ -30,7 +30,8 @@ Boston, MA 02111-1307, USA. */ #include <mach-o/reloc.h> #include <sys/file.h> #include <sys/stat.h> -#include <libc.h> +#include <unistd.h> +/* Instead of unistd.h, this used to include libc.h. */ int malloc_cookie; |