Files
banan-os/userspace/libraries/LibC/include/alloca.h
2025-06-28 16:55:13 +03:00

15 lines
206 B
C

#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