Files
RedBear-OS/tests/error.c
T
2019-02-20 19:27:18 +01:00

12 lines
216 B
C

#include <unistd.h>
#include <stdio.h>
#include <string.h>
#include <errno.h>
int main(void) {
chdir("nonexistent");
printf("errno: %d = %s\n", errno, strerror(errno));
perror("perror");
return 0;
}