musl/include/alloca.h

18 lines
186 B
C
Raw Normal View History

2011-02-12 05:22:29 +00:00
#ifndef _ALLOCA_H
#define _ALLOCA_H
#ifdef __cplusplus
extern "C" {
#endif
2011-02-12 05:22:29 +00:00
#define __NEED_size_t
#include <bits/alltypes.h>
void *alloca(size_t);
#ifdef __cplusplus
}
#endif
2011-02-12 05:22:29 +00:00
#endif