diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index c795e6aad..104a39904 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -286,7 +286,9 @@ enum { | |||
286 | ACTION_DEPTHFIRST = (1 << 3), | 286 | ACTION_DEPTHFIRST = (1 << 3), |
287 | /*ACTION_REVERSE = (1 << 4), - unused */ | 287 | /*ACTION_REVERSE = (1 << 4), - unused */ |
288 | ACTION_QUIET = (1 << 5), | 288 | ACTION_QUIET = (1 << 5), |
289 | ACTION_DANGLING_OK = (1 << 6), | ||
289 | }; | 290 | }; |
291 | typedef uint8_t recurse_flags_t; | ||
290 | extern int recursive_action(const char *fileName, unsigned flags, | 292 | extern int recursive_action(const char *fileName, unsigned flags, |
291 | int FAST_FUNC (*fileAction)(const char *fileName, struct stat* statbuf, void* userData, int depth), | 293 | int FAST_FUNC (*fileAction)(const char *fileName, struct stat* statbuf, void* userData, int depth), |
292 | int FAST_FUNC (*dirAction)(const char *fileName, struct stat* statbuf, void* userData, int depth), | 294 | int FAST_FUNC (*dirAction)(const char *fileName, struct stat* statbuf, void* userData, int depth), |