libc: Add alloca.h
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
apio 2023-05-27 12:11:51 +02:00
parent 8d90d146b2
commit 18115ca04a
Signed by: apio
GPG Key ID: B8A7D06E42258954

8
libc/include/alloca.h Normal file
View File

@ -0,0 +1,8 @@
/* alloca.h: Stack memory allocation. */
#ifndef _ALLOCA_H
#define _ALLOCA_H
#define alloca __builtin_alloca
#endif