Files
RedBear-OS/tests/error.c
T
2018-03-12 21:55:46 -06:00

12 lines
233 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");
return 0;
}