[liba] Add alloca.h

Change-Id: I190dd8a0836a60fa95cd159f6f636f7850fe7b63
This commit is contained in:
Romain Goyet
2017-07-30 15:31:36 +02:00
committed by Romain Goyet
parent c5d917c360
commit 301e0a7891

6
liba/include/alloca.h Normal file
View File

@@ -0,0 +1,6 @@
#ifndef LIBA_ALLOCA_H
#define LIBA_ALLOCA_H
#define alloca(size) __builtin_alloca(size)
#endif