#include #include #include #include #include "test_helpers.h" int main(void) { chdir("nonexistent"); printf("errno: %d = %s\n", errno, strerror(errno)); perror("perror"); }