i got a dupe def error without this (#84)

Co-authored-by: louist103 <35883445+louist103@users.noreply.github.com>
This commit is contained in:
briaguya
2024-05-22 09:04:58 -05:00
committed by Garrett Cox
co-authored by louist103
parent 508f8378de
commit 23d749b296
+4 -1
View File
@@ -1,7 +1,10 @@
#ifndef LIBC_ALLOCA_H
#define LIBC_ALLOCA_H
// void* alloca(u32);
#ifndef __linux__
void* alloca(u32);
#endif
#define alloca __builtin_alloca
#endif