diff options
author | Eric Andersen <andersen@codepoet.org> | 2003-12-04 18:25:36 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2003-12-04 18:25:36 +0000 |
commit | 5660d0d42df9610ba12704e04a5b51b167bed20a (patch) | |
tree | c256fb2732993c90d9f2eaa7c2c45dd0997a49ab | |
parent | 2ed8ea7e4ace7fb1b3bb5b1ab9a23a9bf150193b (diff) |
Set the default stdio buffer size to 4096, rather then 256.
256 is fine of course, but many applications use this value
and expect it to be larger.
-rw-r--r-- | extra/Configs/Config.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/extra/Configs/Config.in b/extra/Configs/Config.in index 82d6bb700..151d60216 100644 --- a/extra/Configs/Config.in +++ b/extra/Configs/Config.in @@ -684,7 +684,7 @@ config UCLIBC_HAS_SCANF_GLIBC_A_FLAG choice prompt "Stdio buffer size" - default UCLIBC_HAS_STDIO_BUFSIZ_256 + default UCLIBC_HAS_STDIO_BUFSIZ_4096 help Please select a value for BUFSIZ. This will be used by the stdio subsystem as the default buffer size for a file, and |