mirror of
https://github.com/zeldaret/oot.git
synced 2025-06-08 09:31:52 +00:00
* Cleanup includes in header files * include libc headers without libc/ prefix * fix * fix2 * fix3 * fix4 * some bss lol * bss * fix
9 lines
182 B
C
9 lines
182 B
C
#ifndef LIBC64_SPRINTF_H
|
|
#define LIBC64_SPRINTF_H
|
|
|
|
#include "stdarg.h"
|
|
|
|
int vsprintf(char* dst, const char* fmt, va_list args);
|
|
int sprintf(char* dst, const char* fmt, ...);
|
|
|
|
#endif
|