1 /* SPDX-License-Identifier: LGPL-2.1 OR MIT */ 2 /* 3 * alloca() for NOLIBC 4 * Copyright (C) 2026 Thomas Weißschuh <linux@weissschuh.net> 5 */ 6 7 /* make sure to include all global symbols */ 8 #include "nolibc.h" 9 10 #ifndef _NOLIBC_ALLOCA_H 11 #define _NOLIBC_ALLOCA_H 12 13 #define alloca(size) __builtin_alloca(size) 14 15 #endif /* _NOLIBC_ALLOCA_H */ 16