Files
RedBear-OS/tests/error.c
T
2018-03-07 20:57:51 -08:00

11 lines
219 B
C

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