almost all of stdio.h

This commit is contained in:
pommicket 2022-02-14 16:52:33 -05:00
parent d0d868433e
commit c15db88951
7 changed files with 403 additions and 62 deletions

View file

@ -1,8 +1,10 @@
#include <stdio.h>
#include <string.h>
int main(int argc, char **argv) {
printf("%s\n",remove("test_file")?"failure":"success");
int main(void) {
char nam[L_tmpnam];
printf("%s\n", tmpnam(nam));
return 0;
}