mirror of
https://github.com/zeldaret/oot.git
synced 2024-11-13 04:39:36 +00:00
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
|