Files
RedBear-OS/include/alloca.h
T
2018-11-23 21:31:09 +01:00

7 lines
106 B
C

#ifndef _ALLOCA_H
#define _ALLOCA_H
#define alloca(size) __builtin_alloca (size)
#endif /* _ALLOCA_H */