diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index c4d802ffd..97aae0bb4 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -1304,6 +1304,14 @@ extern const char bb_default_login_shell[]; | |||
1304 | /* "sh" */ | 1304 | /* "sh" */ |
1305 | #define DEFAULT_SHELL_SHORT_NAME (bb_default_login_shell+6) | 1305 | #define DEFAULT_SHELL_SHORT_NAME (bb_default_login_shell+6) |
1306 | 1306 | ||
1307 | typedef struct masks_labels_t { | ||
1308 | const char *labels; | ||
1309 | const int masks[]; | ||
1310 | } masks_labels_t; | ||
1311 | |||
1312 | int print_flags_separated(const int *masks, const char *labels, | ||
1313 | int flags, const char *separator); | ||
1314 | extern int print_flags(const masks_labels_t *ml, int flags); | ||
1307 | 1315 | ||
1308 | #if ENABLE_FEATURE_DEVFS | 1316 | #if ENABLE_FEATURE_DEVFS |
1309 | # define CURRENT_VC "/dev/vc/0" | 1317 | # define CURRENT_VC "/dev/vc/0" |