aboutsummaryrefslogtreecommitdiff
path: root/include/busybox.h
diff options
context:
space:
mode:
authorDenys Vlasenko <vda.linux@googlemail.com>2011-01-18 13:58:01 +0100
committerDenys Vlasenko <vda.linux@googlemail.com>2011-01-18 13:58:01 +0100
commitb9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704 (patch)
tree7c989f0cd07bf8e7923a3d7d831e72048807b63b /include/busybox.h
parent3b5acaa4323bd165077e60098af94ad9750d62fd (diff)
downloadbusybox-w32-b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704.tar.gz
busybox-w32-b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704.tar.bz2
busybox-w32-b9f2d9f7d9b4a9b6fbb6a28a8c0bcf8e0e3b1704.zip
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.h20
1 files changed, 10 insertions, 10 deletions
diff --git a/include/busybox.h b/include/busybox.h
index 757317fc7..be06817e3 100644
--- a/include/busybox.h
+++ b/include/busybox.h
@@ -13,22 +13,22 @@ PUSH_AND_SET_FUNCTION_VISIBILITY_TO_HIDDEN
13 13
14/* order matters: used as index into "install_dir[]" in appletlib.c */ 14/* order matters: used as index into "install_dir[]" in appletlib.c */
15typedef enum bb_install_loc_t { 15typedef enum bb_install_loc_t {
16 _BB_DIR_ROOT = 0, 16 BB_DIR_ROOT = 0,
17 _BB_DIR_BIN, 17 BB_DIR_BIN,
18 _BB_DIR_SBIN, 18 BB_DIR_SBIN,
19#if ENABLE_INSTALL_NO_USR 19#if ENABLE_INSTALL_NO_USR
20 _BB_DIR_USR_BIN = _BB_DIR_BIN, 20 BB_DIR_USR_BIN = BB_DIR_BIN,
21 _BB_DIR_USR_SBIN = _BB_DIR_SBIN, 21 BB_DIR_USR_SBIN = BB_DIR_SBIN,
22#else 22#else
23 _BB_DIR_USR_BIN, 23 BB_DIR_USR_BIN,
24 _BB_DIR_USR_SBIN, 24 BB_DIR_USR_SBIN,
25#endif 25#endif
26} bb_install_loc_t; 26} bb_install_loc_t;
27 27
28typedef enum bb_suid_t { 28typedef enum bb_suid_t {
29 _BB_SUID_DROP = 0, 29 BB_SUID_DROP = 0,
30 _BB_SUID_MAYBE, 30 BB_SUID_MAYBE,
31 _BB_SUID_REQUIRE 31 BB_SUID_REQUIRE
32} bb_suid_t; 32} bb_suid_t;
33 33
34 34