123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657 |
- #ifndef _GL_ALLOCA_H
- #define _GL_ALLOCA_H
- #ifndef alloca
- # ifdef __GNUC__
- # define alloca __builtin_alloca
- # elif defined _AIX
- # define alloca __alloca
- # elif defined _MSC_VER
- # include <malloc.h>
- # define alloca _alloca
- # elif defined __DECC && defined __VMS
- # define alloca __ALLOCA
- # else
- # include <stddef.h>
- # ifdef __cplusplus
- extern "C"
- # endif
- void *alloca (size_t);
- # endif
- #endif
- #endif
|