1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-04 11:40:22 +00:00

*** empty log message ***

This commit is contained in:
Michael I. Bushnell 1992-01-09 06:37:22 +00:00
parent 10a4c11f7e
commit bdd512ede4

View File

@ -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 @@ main (argc, argv)
#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 @@ main (argc, argv)
struct sockaddr_un server;
char *homedir, *cwd, *str;
char string[BUFSIZ];
#ifndef SERVER_HOME_DIR
struct stat statbfr;
#endif
char *getenv (), *getwd ();
int geteuid ();