diff options
author | David J. MacKenzie <djm@gnu.org> | 1994-10-12 20:21:51 +0000 |
---|---|---|
committer | David J. MacKenzie <djm@gnu.org> | 1994-10-12 20:21:51 +0000 |
commit | 340ff9deaea2a7258d3ee1eca65487b4cd8dd305 (patch) | |
tree | 48728b1b42696e296b41072130301fc3ea627440 /lib-src/emacsclient.c | |
parent | e2f9d9afabe51c8be7e6f4327197670b941789f2 (diff) | |
download | emacs-340ff9deaea2a7258d3ee1eca65487b4cd8dd305.tar.gz |
Eliminate some -Wall warnings.
Diffstat (limited to 'lib-src/emacsclient.c')
-rw-r--r-- | lib-src/emacsclient.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 76d0b4e54d9..303ad654030 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -55,6 +55,7 @@ main (argc, argv) extern char *strerror (); extern int errno; +int main (argc, argv) int argc; char **argv; @@ -167,7 +168,7 @@ main (argc, argv) while (str = fgets (string, BUFSIZ, out)) printf ("%s", str); - exit (0); + return 0; } #else /* This is the SYSV IPC section */ |