mirror of
https://gitlab.com/ryandwyer/perfect-dark
synced 2026-06-07 20:01:13 -04:00
9 lines
188 B
C
9 lines
188 B
C
#ifndef _ULTRA64_LIBC_H_
|
|
#define _ULTRA64_LIBC_H_
|
|
|
|
int sprintf(char *, const char *, ... );
|
|
void bcopy(const void *src, void *dest, size_t size);
|
|
void bzero(void *s, size_t size);
|
|
|
|
#endif
|