summaryrefslogtreecommitdiff
path: root/include/stdio.h
diff options
context:
space:
mode:
authorManuel Novoa III <mjn3@codepoet.org>2001-01-17 16:17:49 +0000
committerManuel Novoa III <mjn3@codepoet.org>2001-01-17 16:17:49 +0000
commit0c827cb73977b1ae72fb48075d412914583f23e0 (patch)
tree7e3e17b432898fe3401a2c93f1baec9982a708a4 /include/stdio.h
parentfb644a9a153cea0269be99e8ff9fb9588e1f262e (diff)
Increase BUFSIZ to 512 to avoid bug in busybox tar.
Diffstat (limited to 'include/stdio.h')
-rw-r--r--include/stdio.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdio.h b/include/stdio.h
index 01f6667ef..61c178308 100644
--- a/include/stdio.h
+++ b/include/stdio.h
@@ -51,7 +51,7 @@ struct __stdio_file {
typedef struct __stdio_file FILE;
/* Default buffer size. */
-#define BUFSIZ (500) /* should get us a fully used kmalloc bucket */
+#define BUFSIZ (512)
/* Define EOF and NULL */
#define EOF (-1)