diff options
Diffstat (limited to 'io/ftw.h')
-rw-r--r-- | io/ftw.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/io/ftw.h b/io/ftw.h index 70fb9e22fd..d283e6937e 100644 --- a/io/ftw.h +++ b/io/ftw.h @@ -44,11 +44,13 @@ enum FTW_NS, /* Unstatable file. */ #define FTW_NS FTW_NS -#ifdef __USE_XOPEN_EXTENDED +#if defined __USE_BSD || defined __USE_XOPEN_EXTENDED FTW_SL, /* Symbolic link. */ # define FTW_SL FTW_SL +#endif +#ifdef __USE_XOPEN_EXTENDED /* These flags are only passed from the `nftw' function. */ FTW_DP, /* Directory, all subdirs have been visited. */ # define FTW_DP FTW_DP |