blob: 91ef4c0d7792cf868981647555e3c65c45953dda [file] [log] [blame]
/*
* alloca.h
*
* Just call the builtin alloca() function
*/
#ifndef _ALLOCA_H
#define _ALLOCA_H
#define alloca(size) __builtin_alloca(size)
#endif /* _ALLOCA_H */