Home | History | Annotate | Download | only in sys

Lines Matching defs:fts

44 #include <fts.h>
98 FTS *fts;
107 fts = fts_open(argv, ops, NULL);
108 ATF_REQUIRE(fts != NULL);
110 while ((ftse = fts_read(fts)) != NULL) {
116 (void)fts_set(fts, ftse, FTS_SKIP);
139 * Check that fts(3)'s stat(2)
143 atf_tc_fail("stat(2) and fts(3) differ");
152 (void)fts_close(fts);