diff options
Diffstat (limited to 'usr/include/alloca.h')
-rw-r--r-- | usr/include/alloca.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/usr/include/alloca.h b/usr/include/alloca.h new file mode 100644 index 0000000..91ef4c0 --- /dev/null +++ b/usr/include/alloca.h @@ -0,0 +1,12 @@ +/* + * alloca.h + * + * Just call the builtin alloca() function + */ + +#ifndef _ALLOCA_H +#define _ALLOCA_H + +#define alloca(size) __builtin_alloca(size) + +#endif /* _ALLOCA_H */ |