changeset 478:84799f3f3488

*** empty log message ***
author Michael I. Bushnell <mib@gnu.org>
date Thu, 09 Jan 1992 06:37:22 +0000
parents ab9a55b26bd4
children 9a41f30a5e64
files lib-src/emacsclient.c
diffstat 1 files changed, 8 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/lib-src/emacsclient.c	Thu Jan 09 05:06:34 1992 +0000
+++ b/lib-src/emacsclient.c	Thu Jan 09 06:37:22 1992 +0000
@@ -1,4 +1,4 @@
-/* Client process that communicates with GNU Emacs acting as server.
+/* Client process that communicates with GNU Emacs acting as server.`
    Copyright (C) 1986, 1987 Free Software Foundation, Inc.
 
 This file is part of GNU Emacs.
@@ -52,6 +52,10 @@
 #include <stdio.h>
 #include <errno.h>
 
+#ifndef SERVER_HOME_DIR
+#include <sys/stat.h>
+#endif
+
 extern int sys_nerr;
 extern char *sys_errlist[];
 extern int errno;
@@ -66,6 +70,9 @@
   struct sockaddr_un server;
   char *homedir, *cwd, *str;
   char string[BUFSIZ];
+#ifndef SERVER_HOME_DIR
+  struct stat statbfr;
+#endif  
 
   char *getenv (), *getwd ();
   int geteuid ();