diff options
author | Gerd Moellmann <gerd@gnu.org> | 2001-04-03 13:37:23 +0000 |
---|---|---|
committer | Gerd Moellmann <gerd@gnu.org> | 2001-04-03 13:37:23 +0000 |
commit | de073ce36fa1d7de145500592fbcb344dc87dbbe (patch) | |
tree | 1d4ba70d64134c825d7b5845edb3f604bb38721e /lib-src | |
parent | 476bf6811ce571982c3416c9f3eb6fd973fb36a5 (diff) | |
download | emacs-de073ce36fa1d7de145500592fbcb344dc87dbbe.tar.gz |
(fail, main): Don't use implicit int return type.
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/emacsclient.c | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/lib-src/emacsclient.c b/lib-src/emacsclient.c index 03fe66598c8..10f95decd80 100644 --- a/lib-src/emacsclient.c +++ b/lib-src/emacsclient.c @@ -1,5 +1,6 @@ /* Client process that communicates with GNU Emacs acting as server. - Copyright (C) 1986, 1987, 1994, 1999, 2000 Free Software Foundation, Inc. + Copyright (C) 1986, 1987, 1994, 1999, 2000, 2001 + Free Software Foundation, Inc. This file is part of GNU Emacs. @@ -178,6 +179,7 @@ xmalloc (size) Try to run a different command, or --if no alternate editor is defined-- exit with an errorcode. */ +void fail (argc, argv) int argc; char **argv; @@ -198,6 +200,7 @@ fail (argc, argv) #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC) +int main (argc, argv) int argc; char **argv; |