From 9de27110e2fca728d51f87f6fbfcf6042994d98a Mon Sep 17 00:00:00 2001 From: Bananymous Date: Thu, 26 Jun 2025 02:42:29 +0300 Subject: [PATCH] LibC: Add alloca.h --- userspace/libraries/LibC/include/alloca.h | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 userspace/libraries/LibC/include/alloca.h diff --git a/userspace/libraries/LibC/include/alloca.h b/userspace/libraries/LibC/include/alloca.h new file mode 100644 index 00000000..f4b37be1 --- /dev/null +++ b/userspace/libraries/LibC/include/alloca.h @@ -0,0 +1,14 @@ +#ifndef _ALLOCA_H +#define _ALLOCA_H 1 + +// https://pubs.opengroup.org/onlinepubs/9699919799/basedefs/stdio.h.html + +#include + +__BEGIN_DECLS + +#define alloca __builtin_alloca + +__END_DECLS + +#endif