mirror of
https://github.com/zeldaret/oot
synced 2026-05-24 23:21:53 -04:00
3475651701
* libc cleanup * Suggested changes, small alloca tweak * Remove printf include
13 lines
268 B
C
13 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
|