add mips64 port
[musl.git] / include / alloca.h
blobd2e6f1c681eebba9b016df23d2e2fb7a54f5942a
1 #ifndef _ALLOCA_H
2 #define _ALLOCA_H
4 #ifdef __cplusplus
5 extern "C" {
6 #endif
8 #define __NEED_size_t
9 #include <bits/alltypes.h>
11 void *alloca(size_t);
13 #ifdef __GNUC__
14 #define alloca __builtin_alloca
15 #endif
17 #ifdef __cplusplus
19 #endif
21 #endif