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

17 lines
255 B
C
Raw Normal View History

2024-01-29 10:44:43 +08:00
#include <sys/types.h>
#include <sys/stat.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
int main (void)
{
struct stat buf;
if (stat (".", &buf) != 0
|| !S_ISDIR (buf.st_mode))
abort ();
printf ("pass\n");
exit (0);
}