home *** CD-ROM | disk | FTP | other *** search
- /* alloca.h (c) Copyright 1991 H.Rogers */
-
- #ifndef __ALLOCA_H
- #define __ALLOCA_H
-
- #ifndef __SYS_TYPES_H
- #include <sys/types.h>
- #endif
-
- #ifdef __cplusplus
- extern "C" {
- #endif
-
- #define alloca(x) __alloca(x)
- #define __builtin_alloca(x) __alloca(x)
-
- extern void *alloca(size_t);
-
- #ifdef __cplusplus
- }
- #endif
-
- #endif
-