repo.or.cz
/
musl.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
defer free of thread-local dlerror buffers from inconsistent context
[musl.git]
/
include
/
alloca.h
blob
d2e6f1c681eebba9b016df23d2e2fb7a54f5942a
1
#ifndef _ALLOCA_H
2
#define _ALLOCA_H
3
4
#ifdef __cplusplus
5
extern
"C"
{
6
#endif
7
8
#define __NEED_size_t
9
#include <bits/alltypes.h>
10
11
void
*
alloca
(
size_t
);
12
13
#ifdef __GNUC__
14
#define alloca __builtin_alloca
15
#endif
16
17
#ifdef __cplusplus
18
}
19
#endif
20
21
#endif