diff options
Diffstat (limited to 'io/fts.h')
-rw-r--r-- | io/fts.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/io/fts.h b/io/fts.h index a22c7bb9ca..0a070ba8dc 100644 --- a/io/fts.h +++ b/io/fts.h @@ -120,11 +120,11 @@ typedef struct _ftsent { } FTSENT; __BEGIN_DECLS -FTSENT *fts_children (FTS *, int) __THROW; -int fts_close (FTS *) __THROW; +FTSENT *fts_children (FTS *, int); +int fts_close (FTS *); FTS *fts_open (char * const *, int, - int (*)(const FTSENT **, const FTSENT **)) __THROW; -FTSENT *fts_read (FTS *) __THROW; + int (*)(const FTSENT **, const FTSENT **)); +FTSENT *fts_read (FTS *); int fts_set (FTS *, FTSENT *, int) __THROW; __END_DECLS |