use a more-correct integer type, and silence 64-bit warnings as a bonus
[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