diff options
author | Dave Love <fx@gnu.org> | 1998-04-08 17:31:45 +0000 |
---|---|---|
committer | Dave Love <fx@gnu.org> | 1998-04-08 17:31:45 +0000 |
commit | 79f13bba7dbc2352a18b4d8df8fa5c1b246f5b40 (patch) | |
tree | cf92d6c290596373da2ef900e87128df036729a9 /lib-src/emacsclient.c | |
parent | 7a2fd3696f4c45f303aa482df4e5b94642b23059 (diff) | |
download | emacs-79f13bba7dbc2352a18b4d8df8fa5c1b246f5b40.tar.gz |
Move inclusion of unistd.h to top, else fails on
Irix6, at least.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r-- | lib-src/emacsclient.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index ae9fb36a9c9..07d446b7aa4 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -32,6 +32,9 @@ Boston, MA 02111-1307, USA. */ #ifdef STDC_HEADERS #include <stdlib.h> #endif +#ifdef HAVE_UNISTD_H +#include <unistd.h> +#endif char *getenv (), *getwd (); char *getcwd (); @@ -182,9 +185,6 @@ main (argc, argv) #include <sys/un.h> #include <sys/stat.h> #include <errno.h> -#ifdef HAVE_UNISTD_H -#include <unistd.h> -#endif extern char *strerror (); extern int errno; |