1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

Include <stdlib.h> if available.

(main): Explicitly declare return type.
This commit is contained in:
Andreas Schwab 1998-04-06 10:12:28 +00:00
parent ff3453e4d1
commit 1f8c2f557f

View file

@ -33,6 +33,10 @@
#undef static
#endif
#ifdef STDC_HEADERS
#include <stdlib.h>
#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;