fix typos on RLIM_NLIMITS, remove _GNU_SOURCE test for it
[musl] / include / alloca.h
1 #ifndef _ALLOCA_H
2 #define _ALLOCA_H
3
4 #define __NEED_size_t
5 #include <bits/alltypes.h>
6
7 void *alloca(size_t);
8
9 #endif