Update release-README after completing the 2.43 release.
[binutils-gdb.git] / sim / testsuite / cris / c / stat1.c
blobb5d14a388e26646115348d25ac644aaf6c7f4ba2
1 #include <sys/types.h>
2 #include <sys/stat.h>
3 #include <unistd.h>
4 #include <stdio.h>
5 #include <stdlib.h>
7 int main (void)
9 struct stat buf;
11 if (stat (".", &buf) != 0
12 || !S_ISDIR (buf.st_mode))
13 abort ();
14 printf ("pass\n");
15 exit (0);