Implement alloca.h

This commit is contained in:
Tibor Nagy
2018-11-23 21:31:09 +01:00
parent 9790289aec
commit 55eb8f2779
5 changed files with 20 additions and 0 deletions
+6
View File
@@ -0,0 +1,6 @@
#ifndef _ALLOCA_H
#define _ALLOCA_H
#define alloca(size) __builtin_alloca (size)
#endif /* _ALLOCA_H */