mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-10 19:20:13 +00:00
77c9c97ff9
* Overlay_Relocate OK * Overlay_Load * format * PR + better match for Overlay_Load
12 lines
259 B
C
12 lines
259 B
C
#ifndef ULTRA64_LIBC_H
|
|
#define ULTRA64_LIBC_H
|
|
|
|
#include "stddef.h"
|
|
|
|
void osSyncPrintf(const char* fmt, ...);
|
|
|
|
void bzero(void* __s, int __n);
|
|
int bcmp(const void* __sl, const void* __s2, int __n);
|
|
void bcopy(const void* __src, void* __dest, int __n);
|
|
|
|
#endif
|