/* Check that lstat:ing an nonexistent file works as expected. #progos: linux */ #include #include #include #include #include #include int main (void) { struct stat buf; if (lstat ("nonexistent", &buf) == 0 || errno != ENOENT) abort (); printf ("pass\n"); exit (0); }