aboutsummaryrefslogtreecommitdiff
path: root/include/libbb.h
diff options
context:
space:
mode:
authorvda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-19 14:47:11 +0000
committervda <vda@69ca8d6d-28ef-0310-b511-8ec308f3f277>2007-04-19 14:47:11 +0000
commit69cd02d7c2af49a10aa412f2666e76d2a1d4234a (patch)
treedd38275bbe7988a0d2c8a806ea51c99e326fa772 /include/libbb.h
parentcff0c40a676337eb85bc57589bfe3436a9d21613 (diff)
downloadbusybox-w32-69cd02d7c2af49a10aa412f2666e76d2a1d4234a.tar.gz
busybox-w32-69cd02d7c2af49a10aa412f2666e76d2a1d4234a.tar.bz2
busybox-w32-69cd02d7c2af49a10aa412f2666e76d2a1d4234a.zip
procps: remove all global variables
text data bss dec hex filename 1462 14 24 1500 5dc busybox.t2/procps/ps.o 1484 0 0 1484 5cc busybox.t3/procps/ps.o 3122 0 252 3374 d2e busybox.t1/procps/top.o 3117 0 0 3117 c2d busybox.t3/procps/top.o git-svn-id: svn://busybox.net/trunk/busybox@18497 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'include/libbb.h')
-rw-r--r--include/libbb.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libbb.h b/include/libbb.h
index 31ded7e9c..fce10f310 100644
--- a/include/libbb.h
+++ b/include/libbb.h
@@ -931,8 +931,8 @@ extern const int const_int_1;
931#ifndef BUFSIZ 931#ifndef BUFSIZ
932#define BUFSIZ 4096 932#define BUFSIZ 4096
933#endif 933#endif
934// TODO: provide hard guarantees on minimum size of bb_common_bufsiz1 934/* Providing hard guarantee on minimum size (think of BUFSIZ == 128) */
935extern char bb_common_bufsiz1[BUFSIZ+1]; 935extern char bb_common_bufsiz1[(BUFSIZ > 256*sizeof(void*) ? BUFSIZ : 256*sizeof(void*)) + 1];
936/* This struct is deliberately not defined. */ 936/* This struct is deliberately not defined. */
937/* See docs/keep_data_small.txt */ 937/* See docs/keep_data_small.txt */
938struct globals; 938struct globals;