Adding upstream version 3.61+dfsg.
[syslinux-debian/hramrach.git] / com32 / include / alloca.h
blob91ef4c0d7792cf868981647555e3c65c45953dda
1 /*
2 * alloca.h
4 * Just call the builtin alloca() function
5 */
7 #ifndef _ALLOCA_H
8 #define _ALLOCA_H
10 #define alloca(size) __builtin_alloca(size)
12 #endif /* _ALLOCA_H */