mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-09-09 23:27:35 -04:00
18 lines
348 B
C
18 lines
348 B
C
|
|
#ifdef TRE_USE_ALLOCA
|
|
/* AIX requires this to be the first thing in the file. */
|
|
#if !defined(__GNUC__) && !defined(__lint__)
|
|
# if HAVE_ALLOCA_H
|
|
# include <alloca.h>
|
|
# else
|
|
# ifdef _AIX
|
|
#pragma alloca
|
|
# else
|
|
# ifndef alloca /* predefined by HP cc +Olibcalls */
|
|
char *alloca ();
|
|
# endif
|
|
# endif
|
|
# endif
|
|
#endif
|
|
#endif /* TRE_USE_ALLOCA */
|