summaryrefslogtreecommitdiff
path: root/src/librc/rc.h.in
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2008-06-04 12:44:45 +0000
committerRoy Marples <roy@marples.name>2008-06-04 12:44:45 +0000
commit83ade5b701eaff9b777649ffad8cb2562cd643ce (patch)
tree3a9b57a85796fa8dba8fe7eff9c4e04146a4f9a0 /src/librc/rc.h.in
parent587051ec679229632d107b24f61d01191f58bc73 (diff)
downloadopenrc-83ade5b701eaff9b777649ffad8cb2562cd643ce.tar.gz
openrc-83ade5b701eaff9b777649ffad8cb2562cd643ce.tar.bz2
openrc-83ade5b701eaff9b777649ffad8cb2562cd643ce.tar.xz
Style.
Diffstat (limited to 'src/librc/rc.h.in')
-rw-r--r--src/librc/rc.h.in8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/librc/rc.h.in b/src/librc/rc.h.in
index ede3fc6..7c94c3e 100644
--- a/src/librc/rc.h.in
+++ b/src/librc/rc.h.in
@@ -256,13 +256,13 @@ const char *rc_sys(void);
* These options can change the services found by the rc_get_depinfo and
* rc_get_depends functions. */
/*! Trace provided services */
-#define RC_DEP_TRACE 0x01
+#define RC_DEP_TRACE (1<<0)
/*! Only use services added to runlevels */
-#define RC_DEP_STRICT 0x02
+#define RC_DEP_STRICT (1<<1)
/*! Runlevel is starting */
-#define RC_DEP_START 0x04
+#define RC_DEP_START (1<<2)
/*! Runlevel is stopping */
-#define RC_DEP_STOP 0x08
+#define RC_DEP_STOP (1<<3)
/*! @name Dependencies
* We analyse each init script and cache the resultant dependency tree.