Added stubs for stdio.h functions

putchar() and puts() are platform-dependent
This commit is contained in:
2021-04-12 01:42:53 -05:00
parent b3b2921b7e
commit e84a2fadd3
2 changed files with 22 additions and 0 deletions

11
src/x86/putc.c Normal file
View File

@@ -0,0 +1,11 @@
#include "stdio.h"
int putchar(int c)
{
}
int puts(const char *str)
{
}