Added lance entry to drivers.conf.
[minix3-old.git] / include / alloca.h
blobf90b6e6c819b5d171630809628aa7adce1965a68
1 /* alloca.h - The dreaded alloca() function.
2 */
4 #ifndef _ALLOCA_H
5 #define _ALLOCA_H
7 #ifndef _TYPES_H
8 #include <sys/types.h>
9 #endif
11 #if __GNUC__
13 /* The compiler recognizes this special keyword, and inlines the code. */
14 #define alloca(size) __builtin_alloca(size)
16 #endif /* __GCC__ */
18 #if __ACK__ || __CCC__
20 _PROTOTYPE(void *alloca, (size_t _size) );
22 #endif /* __ACK__ || __CCC__ */
24 #endif /* _ALLOCA_H */