diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-09 21:30:53 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2007-04-09 21:30:53 +0000 |
commit | 1b4b2cb20e5291c319ce0c7721e64445e2749b10 (patch) | |
tree | 23a0ccfb8d766037d3dd425b6813d74c27c2efe9 /include | |
parent | 53d445aa7571c780b8f2410afb4f326e45f851e4 (diff) | |
download | busybox-w32-1b4b2cb20e5291c319ce0c7721e64445e2749b10.tar.gz busybox-w32-1b4b2cb20e5291c319ce0c7721e64445e2749b10.tar.bz2 busybox-w32-1b4b2cb20e5291c319ce0c7721e64445e2749b10.zip |
xargs: shrink code, ~80 bytes
applets.h: +#undef APPLET_NOEXEC
Diffstat (limited to 'include')
-rw-r--r-- | include/applets.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/include/applets.h b/include/applets.h index f20b79629..013903851 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -14,8 +14,8 @@ | |||
14 | /* | 14 | /* |
15 | name - applet name as it is typed on command line | 15 | name - applet name as it is typed on command line |
16 | name2 - applet name, converted to C (ether-wake: name2 = ether_wake) | 16 | name2 - applet name, converted to C (ether-wake: name2 = ether_wake) |
17 | main - <applet>_main part (e.g. for bzcat: main = bunzip2) | 17 | main - corresponding <applet>_main to call (bzcat: main = bunzip2) |
18 | l - location ([/usr]/[s]bin) | 18 | l - location to install link to: [/usr]/[s]bin |
19 | s - suid type: | 19 | s - suid type: |
20 | _BB_SUID_ALWAYS: will complain if busybox isn't suid | 20 | _BB_SUID_ALWAYS: will complain if busybox isn't suid |
21 | and is run by non-root (applet_main() will not be called at all) | 21 | and is run by non-root (applet_main() will not be called at all) |
@@ -363,3 +363,4 @@ USE_ZCIP(APPLET(zcip, _BB_DIR_SBIN, _BB_SUID_NEVER)) | |||
363 | #undef APPLET_NOUSAGE | 363 | #undef APPLET_NOUSAGE |
364 | #undef APPLET_ODDNAME | 364 | #undef APPLET_ODDNAME |
365 | #undef APPLET_NOEXEC | 365 | #undef APPLET_NOEXEC |
366 | #undef APPLET_NOFORK | ||