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