diff options
author | Richard M. Stallman <rms@gnu.org> | 1994-01-06 03:57:48 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1994-01-06 03:57:48 +0000 |
commit | 41bd596286258dbe2ac3876d224c6b866c5ad92e (patch) | |
tree | 32681c2e0fcfa5080157f08d1663b469e13e155a /lib-src/fakemail.c | |
parent | e4d0fd6a832fc21fbb9c5247d2d3454088ba72d9 (diff) | |
download | emacs-41bd596286258dbe2ac3876d224c6b866c5ad92e.tar.gz |
(main) [MSDOS]: Dummy stub just to make the file compile.
Diffstat (limited to 'lib-src/fakemail.c')
-rw-r--r-- | lib-src/fakemail.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/lib-src/fakemail.c b/lib-src/fakemail.c index 4810dc8bfc0..145e51efd01 100644 --- a/lib-src/fakemail.c +++ b/lib-src/fakemail.c @@ -27,6 +27,11 @@ main () { } #else /* not BSD 4.2 (or newer) */ +#ifdef MSDOS +main () +{ +} +#else /* not MSDOS */ /* This conditional contains all the rest of the file. */ /* These are defined in config in some versions. */ @@ -658,4 +663,5 @@ main (argc, argv) exit (close_the_streams ()); } +#endif /* not MSDOS */ #endif /* not BSD 4.2 (or newer) */ |