LibC: Add alloca.h

This commit is contained in:
Bananymous 2025-06-26 02:42:29 +03:00
parent 93e5d09a63
commit 9de27110e2
1 changed files with 14 additions and 0 deletions

View File

@ -0,0 +1,14 @@
#ifndef _ALLOCA_H
#define _ALLOCA_H 1
// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html
#include <sys/cdefs.h>
__BEGIN_DECLS
#define alloca __builtin_alloca
__END_DECLS
#endif