]> andersk Git - splint.git/blame - test/metastate/osd.c
Incorporated path for file inclusion in cpplib.c.
[splint.git] / test / metastate / osd.c
CommitLineData
80ee600a 1void check (int b);
2
3int osd_fileIsReadable (char *f)
4{
5 FILE *fl = fopen (f, "r");
6
7 if (fl != NULL)
8 {
9 fclose (fl);
10 return (TRUE);
11 }
12 else
13 {
14 return (FALSE);
15 }
16}
This page took 0.063128 seconds and 5 git commands to generate.