From: Andreas Schwab Date: Mon, 6 Apr 1998 10:12:28 +0000 (+0000) Subject: Include if available. X-Git-Tag: emacs-20.3~1688 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f8c2f557f61050bf8e08c2c5f8168f79516f29c;p=emacs.git Include if available. (main): Explicitly declare return type. --- diff --git a/lib-src/b2m.c b/lib-src/b2m.c index 055b807509b..6a2fcff9a21 100644 --- a/lib-src/b2m.c +++ b/lib-src/b2m.c @@ -33,6 +33,10 @@ #undef static #endif +#ifdef STDC_HEADERS +#include +#endif + #undef TRUE #define TRUE 1 #undef FALSE @@ -88,6 +92,7 @@ struct option longopts[] = extern int optind; +int main (argc, argv) int argc; char **argv;