mirror of
https://github.com/zeldaret/oot.git
synced 2025-01-15 12:47:04 +00:00
18 lines
487 B
C
18 lines
487 B
C
#ifndef ULTRA64_LIBC_H
|
|
#define ULTRA64_LIBC_H
|
|
|
|
#include "stddef.h"
|
|
|
|
void osSyncPrintf(const char* fmt, ...);
|
|
|
|
#if defined(__GNUC__) && defined(NON_MATCHING)
|
|
void bzero(void* __s, unsigned int __n);
|
|
int bcmp(const void* __sl, const void* __s2, unsigned int __n);
|
|
void bcopy(const void* __src, void* __dest, unsigned int __n);
|
|
#else
|
|
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
|
|
|
|
#endif
|