Releasing debian version 3:6.03+dfsg-10.
[syslinux-debian.git] / com32 / include / alloca.h
blob8c4067f9da0a04402caf306e1e2e895dc5d1b024
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 */