diff options
author | Denys Vlasenko | 2011-01-18 13:58:01 +0100 |
---|---|---|
committer | Denys Vlasenko | 2011-01-18 13:58:01 +0100 |
commit | b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704 (patch) | |
tree | 7c989f0cd07bf8e7923a3d7d831e72048807b63b /include/busybox.h | |
parent | 3b5acaa4323bd165077e60098af94ad9750d62fd (diff) | |
download | busybox-b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704.zip busybox-b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704.tar.gz |
mass removal of underscores from _BB_DIR_foo and _BB_SUID_foo
Signed-off-by: Denys Vlasenko <vda.linux@googlemail.com>
Diffstat (limited to 'include/busybox.h')
-rw-r--r-- | include/busybox.h | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/include/busybox.h b/include/busybox.h index 757317f..be06817 100644 --- a/include/busybox.h +++ b/include/busybox.h @@ -13,22 +13,22 @@ PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN /* order matters: used as index into "install_dir[]" in appletlib.c */ typedef enum bb_install_loc_t { - _BB_DIR_ROOT = 0, - _BB_DIR_BIN, - _BB_DIR_SBIN, + BB_DIR_ROOT = 0, + BB_DIR_BIN, + BB_DIR_SBIN, #if ENABLE_INSTALL_NO_USR - _BB_DIR_USR_BIN = _BB_DIR_BIN, - _BB_DIR_USR_SBIN = _BB_DIR_SBIN, + BB_DIR_USR_BIN = BB_DIR_BIN, + BB_DIR_USR_SBIN = BB_DIR_SBIN, #else - _BB_DIR_USR_BIN, - _BB_DIR_USR_SBIN, + BB_DIR_USR_BIN, + BB_DIR_USR_SBIN, #endif } bb_install_loc_t; typedef enum bb_suid_t { - _BB_SUID_DROP = 0, - _BB_SUID_MAYBE, - _BB_SUID_REQUIRE + BB_SUID_DROP = 0, + BB_SUID_MAYBE, + BB_SUID_REQUIRE } bb_suid_t; |