Added a bunch of stuff

This commit is contained in:
Gitea 2020-12-01 17:40:03 -06:00
parent 66350160b0
commit 77c2abd247
66 changed files with 1808 additions and 0 deletions

7
stdio/perror.c Normal file
View file

@ -0,0 +1,7 @@
#include <stdio.h>
#include <string.h>
#include <errno.h>
void perror(const char * str) {
fprintf(stderr, "%s: %s\n", str, strerror(errno));
}