LibC: Write mostly functioning stdio

This commit is contained in:
Bananymous
2023-04-23 14:32:37 +03:00
parent 9b2a577fc3
commit cd74b2167d
13 changed files with 619 additions and 60 deletions

View File

@@ -2,6 +2,7 @@
int main()
{
puts("Hello World!");
if (printf("Hello %s!", "World") == -1)
perror(NULL);
return 0;
}