blob: 22b521e4102070c9f4789b7361f4cc8e2736d32f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
Testing to see if I can rename a file without blanking its history.
That'd be dalias' suggestion..
Mine was #define isdigit(a) (a>='0'&&a<='9'), but i forgot to record the
exact savings..
text data bss dec hex filename
864252 10252 645860 1520364 1732ec busybox_old
863714 10244 645892 1519850 1730ea busybox_unstripped
Index: include/libbb.h
===================================================================
--- include/libbb.h (revision 15244)
+++ include/libbb.h (working copy)
@@ -531,4 +531,10 @@
#include <dmalloc.h>
#endif
+#if 1
+#include <ctype.h>
+#define _CTYPE_H 1 /* muahahaha */
+#undef isdigit
+#define isdigit(a) ((unsigned)(a)-'0' < 10)
+#endif
#endif /* __LIBBUSYBOX_H__ */
|