diff options
author | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-15 10:23:55 +0000 |
---|---|---|
committer | "Vladimir N. Oleynik" <dzo@simtreas.ru> | 2005-10-15 10:23:55 +0000 |
commit | 6f347ef9dc540aaea025c0575e586817cd85cc8e (patch) | |
tree | 5fc98f67e92bb2eca75d33940a4f8698bb216f3a /include | |
parent | 84e7511607600c2c7b9e7c4087897d44cc4668c4 (diff) | |
download | busybox-w32-6f347ef9dc540aaea025c0575e586817cd85cc8e.tar.gz busybox-w32-6f347ef9dc540aaea025c0575e586817cd85cc8e.tar.bz2 busybox-w32-6f347ef9dc540aaea025c0575e586817cd85cc8e.zip |
common BUFSIZ BSS buffer, small reduce code, data and bss
Diffstat (limited to 'include')
-rw-r--r-- | include/libbb.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/libbb.h b/include/libbb.h index e3087db18..b7dd48775 100644 --- a/include/libbb.h +++ b/include/libbb.h | |||
@@ -333,6 +333,12 @@ extern const char * const bb_path_group_file; | |||
333 | extern const char * const bb_path_securetty_file; | 333 | extern const char * const bb_path_securetty_file; |
334 | extern const char * const bb_path_motd_file; | 334 | extern const char * const bb_path_motd_file; |
335 | extern const char * const bb_dev_null; | 335 | extern const char * const bb_dev_null; |
336 | |||
337 | #ifndef BUFSIZ | ||
338 | #define BUFSIZ 4096 | ||
339 | #endif | ||
340 | extern char bb_common_bufsiz1[BUFSIZ+1]; | ||
341 | |||
336 | /* | 342 | /* |
337 | * You can change LIBBB_DEFAULT_LOGIN_SHELL, but don`t use, | 343 | * You can change LIBBB_DEFAULT_LOGIN_SHELL, but don`t use, |
338 | * use bb_default_login_shell and next defines, | 344 | * use bb_default_login_shell and next defines, |