aboutsummaryrefslogtreecommitdiff
path: root/include/applets.h
diff options
context:
space:
mode:
authorandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-24 18:07:19 +0000
committerandersen <andersen@69ca8d6d-28ef-0310-b511-8ec308f3f277>2001-04-24 18:07:19 +0000
commitc1db72874a1dbb92ee3dca555e1561e6a95b5ce2 (patch)
tree10aa156e8cefad985eb3c9e5dafd68c22eb1e632 /include/applets.h
parent630c4d3f8ede5b6082596b7a606f4212bf7d427e (diff)
downloadbusybox-w32-c1db72874a1dbb92ee3dca555e1561e6a95b5ce2.tar.gz
busybox-w32-c1db72874a1dbb92ee3dca555e1561e6a95b5ce2.tar.bz2
busybox-w32-c1db72874a1dbb92ee3dca555e1561e6a95b5ce2.zip
Split up chmod_chown_chgrp.c into 3 separate apps. This unfortunately
adds 384 bytes to the overall size. But having each app be standalone is the Right Thing(tm) so we will just have to live with it. -Erik git-svn-id: svn://busybox.net/trunk/busybox@2422 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/applets.h')
-rw-r--r--include/applets.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/include/applets.h b/include/applets.h
index d3399b9af..0fd89c71a 100644
--- a/include/applets.h
+++ b/include/applets.h
@@ -59,14 +59,14 @@
59#ifdef BB_CAT 59#ifdef BB_CAT
60 APPLET(cat, cat_main, _BB_DIR_BIN) 60 APPLET(cat, cat_main, _BB_DIR_BIN)
61#endif 61#endif
62#ifdef BB_CHMOD_CHOWN_CHGRP 62#ifdef BB_CHGRP
63 APPLET(chgrp, chmod_chown_chgrp_main, _BB_DIR_BIN) 63 APPLET(chgrp, chgrp_main, _BB_DIR_BIN)
64#endif 64#endif
65#ifdef BB_CHMOD_CHOWN_CHGRP 65#ifdef BB_CHMOD
66 APPLET(chmod, chmod_chown_chgrp_main, _BB_DIR_BIN) 66 APPLET(chmod, chmod_main, _BB_DIR_BIN)
67#endif 67#endif
68#ifdef BB_CHMOD_CHOWN_CHGRP 68#ifdef BB_CHOWN
69 APPLET(chown, chmod_chown_chgrp_main, _BB_DIR_BIN) 69 APPLET(chown, chown_main, _BB_DIR_BIN)
70#endif 70#endif
71#ifdef BB_CHROOT 71#ifdef BB_CHROOT
72 APPLET(chroot, chroot_main, _BB_DIR_USR_SBIN) 72 APPLET(chroot, chroot_main, _BB_DIR_USR_SBIN)