# HG changeset patch # User Gerd Moellmann # Date 986305043 0 # Node ID 32679fe3e19655841306fe5c274fdff4888ff974 # Parent fb9947c1ec4176e81cd9bdc3d8356f324da15ef2 (fail, main): Don't use implicit int return type. diff -r fb9947c1ec41 -r 32679fe3e196 lib-src/emacsclient.c --- a/lib-src/emacsclient.c Tue Apr 03 13:34:06 2001 +0000 +++ b/lib-src/emacsclient.c Tue Apr 03 13:37:23 2001 +0000 @@ -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 @@ 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 @@ #if !defined (HAVE_SOCKETS) && !defined (HAVE_SYSVIPC) +int main (argc, argv) int argc; char **argv;