data/method/gdb/gdb-13.2/sim/testsuite/cris/c/stat5.c

21 lines
354 B
C
Raw Normal View History

2024-01-29 10:44:43 +08:00
/* Check that lstat:ing an nonexistent file works as expected.
#progos: linux
*/
#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);
}