diff options
Diffstat (limited to 'include/libbb.h')
-rw-r--r-- | include/libbb.h | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/include/libbb.h b/include/libbb.h index b0312e5d4..dfcaa05ec 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -440,9 +440,8 @@ void *xmmap_anon(size_t size) FAST_FUNC; | |||
440 | # define cached_pagesize(var) (var) | 440 | # define cached_pagesize(var) (var) |
441 | #endif | 441 | #endif |
442 | 442 | ||
443 | 443 | /* Generate ls-style "mode string" like "-rwsr-xr-x" or "drwxrwxrwt" */ | |
444 | //TODO: supply a pointer to char[11] buffer (avoid statics)? | 444 | extern char *bb_mode_string(char buf[11], mode_t mode) FAST_FUNC; |
445 | extern char *bb_mode_string(char buf[12], mode_t mode) FAST_FUNC; | ||
446 | extern int is_directory(const char *name, int followLinks) FAST_FUNC; | 445 | extern int is_directory(const char *name, int followLinks) FAST_FUNC; |
447 | enum { /* cp.c, mv.c, install.c depend on these values. CAREFUL when changing them! */ | 446 | enum { /* cp.c, mv.c, install.c depend on these values. CAREFUL when changing them! */ |
448 | FILEUTILS_PRESERVE_STATUS = 1 << 0, /* -p */ | 447 | FILEUTILS_PRESERVE_STATUS = 1 << 0, /* -p */ |