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
12 lines
268 B
C
12 lines
268 B
C
#ifndef ULTRA64_LIBC_H
|
|
#define ULTRA64_LIBC_H
|
|
|
|
#include "stddef.h"
|
|
|
|
void osSyncPrintf(const char* fmt, ...);
|
|
|
|
void bzero(void* __s, size_t __n);
|
|
int bcmp(const void* __sl, const void* __s2, size_t __n);
|
|
void bcopy(const void* __src, void* __dest, size_t __n);
|
|
|
|
#endif
|