fix broken dns response parsing code that made most ipv6 lookups fail
[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