mirror of
https://github.com/zeldaret/mm.git
synced 2026-05-23 15:01:32 -04:00
e70a8fbb99
* Move headers to include/libc * stddef * move math.h * General cleanup * move fabs, sqrtf and sqrt to math.h * move alloca and assert * whoops
8 lines
95 B
C
8 lines
95 B
C
#ifndef ALLOCA_H
|
|
#define ALLOCA_H
|
|
|
|
void* alloca(u32);
|
|
#define alloca __builtin_alloca
|
|
|
|
#endif
|