diff options
author | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-16 15:08:59 +0000 |
---|---|---|
committer | landley <landley@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2006-06-16 15:08:59 +0000 |
commit | 7aa3fab536a57529ebb75eccd317adab0e9dc197 (patch) | |
tree | 281bba4feed27caadd90981d70e713caedbf15f2 /patches/woot.txt | |
parent | dff2e91fd9d09e58d60427ecaacbb2a696f9142b (diff) | |
download | busybox-w32-7aa3fab536a57529ebb75eccd317adab0e9dc197.tar.gz busybox-w32-7aa3fab536a57529ebb75eccd317adab0e9dc197.tar.bz2 busybox-w32-7aa3fab536a57529ebb75eccd317adab0e9dc197.zip |
This directory was fallout from the great feature freeze of 2003, which led
up to the 1.00 release. I just moved what was left of it to
http://busybox.net/~landley/pending because it does _not_ belong in the
tree anymore.
git-svn-id: svn://busybox.net/trunk/busybox@15407 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to '')
-rw-r--r-- | patches/woot.txt | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/patches/woot.txt b/patches/woot.txt deleted file mode 100644 index 22b521e41..000000000 --- a/patches/woot.txt +++ /dev/null | |||
@@ -1,26 +0,0 @@ | |||
1 | Testing to see if I can rename a file without blanking its history. | ||
2 | |||
3 | That'd be dalias' suggestion.. | ||
4 | |||
5 | Mine was #define isdigit(a) (a>='0'&&a<='9'), but i forgot to record the | ||
6 | exact savings.. | ||
7 | text data bss dec hex filename | ||
8 | 864252 10252 645860 1520364 1732ec busybox_old | ||
9 | 863714 10244 645892 1519850 1730ea busybox_unstripped | ||
10 | |||
11 | |||
12 | Index: include/libbb.h | ||
13 | =================================================================== | ||
14 | --- include/libbb.h (revision 15244) | ||
15 | +++ include/libbb.h (working copy) | ||
16 | @@ -531,4 +531,10 @@ | ||
17 | #include <dmalloc.h> | ||
18 | #endif | ||
19 | |||
20 | +#if 1 | ||
21 | +#include <ctype.h> | ||
22 | +#define _CTYPE_H 1 /* muahahaha */ | ||
23 | +#undef isdigit | ||
24 | +#define isdigit(a) ((unsigned)(a)-'0' < 10) | ||
25 | +#endif | ||
26 | #endif /* __LIBBUSYBOX_H__ */ | ||