Probably the final commit for this, only so this commit can be pushed to the new Gitea server.

This commit is contained in:
2020-12-04 00:06:27 -06:00
parent 5b66184ea0
commit dd1bc6acdc
9 changed files with 98 additions and 83 deletions
+9
View File
@@ -0,0 +1,9 @@
void printf(char *format_string, ...)
{
va_list arg;
va_start(arg, format_string);
va_end(arg);
}