diff options
author | Karl Heuer <kwzh@gnu.org> | 1996-07-15 21:27:49 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1996-07-15 21:27:49 +0000 |
commit | 5fbc367c8f4af49e3cf2d3c1f7a43174003f7f60 (patch) | |
tree | de185f3f8b2787b9d9461987c2a757febfb6b9b8 /lib-src/fakemail.c | |
parent | bf3121f325e7602846677cfb7e0f04905a2883b2 (diff) | |
download | emacs-5fbc367c8f4af49e3cf2d3c1f7a43174003f7f60.tar.gz |
Declare main as int, not void.
Diffstat (limited to 'lib-src/fakemail.c')
-rw-r--r-- | lib-src/fakemail.c | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lib-src/fakemail.c b/lib-src/fakemail.c index 93e14d7e961..400861d4fd7 100644 --- a/lib-src/fakemail.c +++ b/lib-src/fakemail.c @@ -24,15 +24,17 @@ Boston, MA 02111-1307, USA. */ #if defined (BSD) && !defined (BSD4_1) && !defined (USE_FAKEMAIL) /* This program isnot used in BSD, so just avoid loader complaints. */ -void +int main () { + return 0; } #else /* not BSD 4.2 (or newer) */ #ifdef MSDOS -void +int main () { + return 0; } #else /* not MSDOS */ /* This conditional contains all the rest of the file. */ @@ -695,7 +697,7 @@ write_header (the_header) return; } -void +int main (argc, argv) int argc; char **argv; |