mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-11 11:49:24 +00:00
3475651701
* libc cleanup * Suggested changes, small alloca tweak * Remove printf include
9 lines
130 B
C
9 lines
130 B
C
#ifndef ALLOCA_H
|
|
#define ALLOCA_H
|
|
|
|
#include "stddef.h"
|
|
|
|
void* alloca(size_t);
|
|
#define alloca(size) __builtin_alloca(size)
|
|
|
|
#endif
|