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/test-distrib.c | |
parent | e2f9d9afabe51c8be7e6f4327197670b941789f2 (diff) | |
download | emacs-340ff9deaea2a7258d3ee1eca65487b4cd8dd305.tar.gz emacs-340ff9deaea2a7258d3ee1eca65487b4cd8dd305.tar.bz2 emacs-340ff9deaea2a7258d3ee1eca65487b4cd8dd305.zip |
Eliminate some -Wall warnings.
Diffstat (limited to 'lib-src/test-distrib.c')
-rw-r--r-- | lib-src/test-distrib.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib-src/test-distrib.c b/lib-src/test-distrib.c index 897922a3bf5..33dc0a46ab4 100644 --- a/lib-src/test-distrib.c +++ b/lib-src/test-distrib.c @@ -32,6 +32,7 @@ cool_read (fd, buf, size) } } +int main (argc, argv) int argc; char **argv; @@ -63,7 +64,6 @@ have been corrupted in the files of Emacs, and it will not work.\n", close (fd); #ifdef VMS exit (1); /* On VMS, success is 1. */ -#else - exit (0); #endif + return (0); } |