mirror of
https://github.com/zeldaret/oot.git
synced 2025-07-05 15:34:41 +00:00
libc cleanup (#1568)
* libc cleanup * Suggested changes, small alloca tweak * Remove printf include
This commit is contained in:
parent
4e55168eaa
commit
3475651701
46 changed files with 571 additions and 432 deletions
9
include/libc/stdio.h
Normal file
9
include/libc/stdio.h
Normal file
|
@ -0,0 +1,9 @@
|
|||
#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
|
Loading…
Add table
Add a link
Reference in a new issue