mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 06:54:14 -04:00
01a1b113b4
* libultra/libc cleanup * Format * Correct prototype for strchr * Different prototypes for bzero, bcmp, bcopy under __GNUC__ to match builtin prototypes * Correct alloca prototype
8 lines
119 B
C
8 lines
119 B
C
#ifndef LIBC_ALLOCA_H
|
|
#define LIBC_ALLOCA_H
|
|
|
|
void* alloca(size_t);
|
|
#define alloca(size) __builtin_alloca(size)
|
|
|
|
#endif
|