URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gdb-6.8/] [sim/] [testsuite/] [sim/] [cris/] [c/] [stat5.c] - Rev 840
Compare with Previous | Blame | View Log
/* Check that lstat:ing an nonexistent file works as expected. #notarget: cris*-*-elf */ #include <sys/types.h> #include <sys/stat.h> #include <unistd.h> #include <errno.h> #include <stdio.h> #include <stdlib.h> int main (void) { struct stat buf; if (lstat ("nonexistent", &buf) == 0 || errno != ENOENT) abort (); printf ("pass\n"); exit (0); }