diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-06 08:11:08 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2006-04-06 08:11:08 +0000 |
commit | 8f7d38970046c0ea53de911084561b79ffb2d6b9 (patch) | |
tree | b19ed436f9361694ce3d071f3a8ec5957042c8e4 /include/applets.h | |
parent | e11a01cc34ab024b81ca83fec5182c6a444d4798 (diff) | |
download | busybox-w32-8f7d38970046c0ea53de911084561b79ffb2d6b9.tar.gz busybox-w32-8f7d38970046c0ea53de911084561b79ffb2d6b9.tar.bz2 busybox-w32-8f7d38970046c0ea53de911084561b79ffb2d6b9.zip |
- new applet diff. Rob Sullivan writes:
Here's my attempt at a mini diff applet - it's adapted from the code at
http://www.openbsd.org/cgi-bin/cvsweb/src/usr.bin/diff/, and only supports
unified diffs.
I've busyboxified everything to a reasonable degree, so I think the code is
suitable enough to be included, but there's still a fair bit of cleaning up
to be done.
Diffstat (limited to 'include/applets.h')
-rw-r--r-- | include/applets.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/applets.h b/include/applets.h index 0f239822c..f0c6f7a0e 100644 --- a/include/applets.h +++ b/include/applets.h | |||
@@ -86,6 +86,7 @@ USE_DELGROUP(APPLET(delgroup, delgroup_main, _BB_DIR_BIN, _BB_SUID_NEVER)) | |||
86 | USE_DELUSER(APPLET(deluser, deluser_main, _BB_DIR_BIN, _BB_SUID_NEVER)) | 86 | USE_DELUSER(APPLET(deluser, deluser_main, _BB_DIR_BIN, _BB_SUID_NEVER)) |
87 | USE_DEVFSD(APPLET(devfsd, devfsd_main, _BB_DIR_SBIN, _BB_SUID_NEVER)) | 87 | USE_DEVFSD(APPLET(devfsd, devfsd_main, _BB_DIR_SBIN, _BB_SUID_NEVER)) |
88 | USE_DF(APPLET(df, df_main, _BB_DIR_BIN, _BB_SUID_NEVER)) | 88 | USE_DF(APPLET(df, df_main, _BB_DIR_BIN, _BB_SUID_NEVER)) |
89 | USE_DIFF(APPLET(diff, diff_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) | ||
89 | USE_DIRNAME(APPLET(dirname, dirname_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) | 90 | USE_DIRNAME(APPLET(dirname, dirname_main, _BB_DIR_USR_BIN, _BB_SUID_NEVER)) |
90 | USE_DMESG(APPLET(dmesg, dmesg_main, _BB_DIR_BIN, _BB_SUID_NEVER)) | 91 | USE_DMESG(APPLET(dmesg, dmesg_main, _BB_DIR_BIN, _BB_SUID_NEVER)) |
91 | USE_DNSD(APPLET(dnsd, dnsd_main, _BB_DIR_USR_SBIN, _BB_SUID_ALWAYS)) | 92 | USE_DNSD(APPLET(dnsd, dnsd_main, _BB_DIR_USR_SBIN, _BB_SUID_ALWAYS)) |