diff options
author | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-21 11:58:14 +0000 |
---|---|---|
committer | Denis Vlasenko <vda.linux@googlemail.com> | 2006-11-21 11:58:14 +0000 |
commit | 9229794ab33fa510a5896784958b90f87bef6876 (patch) | |
tree | cbf063d72178aac42b71fe233dc20e5bc226463e /include | |
parent | a8381948da79b06071c17853a9a2a59947742c8d (diff) | |
download | busybox-w32-9229794ab33fa510a5896784958b90f87bef6876.tar.gz busybox-w32-9229794ab33fa510a5896784958b90f87bef6876.tar.bz2 busybox-w32-9229794ab33fa510a5896784958b90f87bef6876.zip |
insmod_ng_main: -80 bytes. Stopp mmapping, use xmalloc_open_read_close().
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h index 3fb477b33..f574f9b5f 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -60,7 +60,7 @@ | |||
60 | #define PATH_MAX 256 | 60 | #define PATH_MAX 256 |
61 | #endif | 61 | #endif |
62 | 62 | ||
63 | /* Not (yet) used, but tested to work correctly | 63 | /* Tested to work correctly (IIRC :]) */ |
64 | #define MAXINT(T) (T)( \ | 64 | #define MAXINT(T) (T)( \ |
65 | ((T)-1) > 0 \ | 65 | ((T)-1) > 0 \ |
66 | ? (T)-1 \ | 66 | ? (T)-1 \ |
@@ -72,7 +72,6 @@ | |||
72 | ? (T)0 \ | 72 | ? (T)0 \ |
73 | : ((T)1 << (sizeof(T)*8-1)) \ | 73 | : ((T)1 << (sizeof(T)*8-1)) \ |
74 | ) | 74 | ) |
75 | */ | ||
76 | 75 | ||
77 | /* Large file support */ | 76 | /* Large file support */ |
78 | /* Note that CONFIG_LFS forces bbox to be built with all common ops | 77 | /* Note that CONFIG_LFS forces bbox to be built with all common ops |