diff options
Diffstat (limited to 'include/alloca.h')
-rw-r--r-- | include/alloca.h | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/include/alloca.h b/include/alloca.h new file mode 100644 index 00000000..ac78e460 --- /dev/null +++ b/include/alloca.h @@ -0,0 +1,9 @@ +#ifndef _ALLOCA_H +#define _ALLOCA_H + +#define __NEED_size_t +#include <bits/alltypes.h> + +void *alloca(size_t); + +#endif |