toaruos/libc/stdio/perror.c
2018-05-04 13:11:06 +09:00

7 lines
116 B
C

#include <stdio.h>
#include <errno.h>
void perror(const char *s) {
fprintf(stderr, "%s: error %d\n", s, errno);
}