2023-10-27 14:06:44 +00:00
|
|
|
#ifndef ULTRA64_LIBC_H
|
|
|
|
#define ULTRA64_LIBC_H
|
|
|
|
|
|
|
|
#include "stddef.h"
|
|
|
|
|
|
|
|
void osSyncPrintf(const char* fmt, ...);
|
|
|
|
|
2024-02-29 20:11:54 +00:00
|
|
|
#ifdef __GNUC__
|
|
|
|
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
|
2024-01-31 00:30:27 +00:00
|
|
|
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);
|
2024-02-29 20:11:54 +00:00
|
|
|
#endif
|
2023-10-27 14:06:44 +00:00
|
|
|
|
|
|
|
#endif
|