mirror of
https://github.com/zeldaret/oot
synced 2026-05-23 15:01:47 -04:00
3475651701
* libc cleanup * Suggested changes, small alloca tweak * Remove printf include
10 lines
164 B
C
10 lines
164 B
C
#ifndef STDIO_H
|
|
#define STDIO_H
|
|
|
|
#include "stdarg.h"
|
|
|
|
int sprintf(char* dst, const char* fmt, ...);
|
|
int vsprintf(char* dst, const char* fmt, va_list args);
|
|
|
|
#endif
|