PatchworkOS
Loading...
Searching...
No Matches
alloca.h
Go to the documentation of this file.
1#ifndef _ALLOCA_H
2#define _ALLOCA_H 1
3
4#ifdef __cplusplus
5extern "C"
6{
7#endif
8
9#include "_internal/config.h"
10
11#define alloca(size) __builtin_alloca(size)
12
13#ifdef __cplusplus
14}
15#endif
16
17#endif