Added a bunch of stuff
This commit is contained in:
parent
66350160b0
commit
77c2abd247
66 changed files with 1808 additions and 0 deletions
7
stdio/perror.c
Normal file
7
stdio/perror.c
Normal 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));
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue