patch from rich murphy (rich@rice.edu) to fix alloca prototype

This commit is contained in:
cgd 1993-03-25 05:51:03 +00:00
parent d3db1501d2
commit 3ed1b2cbf7

View File

@ -102,7 +102,11 @@ int setenv __P((const char *, const char *, int));
#endif /* not ANSI */
#if !defined(_ANSI_SOURCE) && !defined(_POSIX_SOURCE)
void *alloca __P((size_t)); /* built-in for gcc */
#if defined(alloca) && (alloca == __builtin_alloca)
void *alloca __P((int)); /* built-in for gcc */
#else
void *alloca __P((size_t));
#endif /* __GNUC__ */
extern char *optarg; /* getopt(3) external variables */
extern int optind;
extern int opterr;