dns: prefer monotonic clock for timeouts
[musl.git] / include / alloca.h
blobb8d183d144efad9bbe6aa94516bfe6ee6c5aa098
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 #define alloca __builtin_alloca
15 #ifdef __cplusplus
17 #endif
19 #endif