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) |
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 @@ #define PATH_MAX 256 #endif -/* Not (yet) used, but tested to work correctly +/* Tested to work correctly (IIRC :]) */ #define MAXINT(T) (T)( \ ((T)-1) > 0 \ ? (T)-1 \ @@ -72,7 +72,6 @@ ? (T)0 \ : ((T)1 << (sizeof(T)*8-1)) \ ) -*/ /* Large file support */ /* Note that CONFIG_LFS forces bbox to be built with all common ops |