diff options
author | Manuel Novoa III <mjn3@codepoet.org> | 2001-01-17 16:17:49 +0000 |
---|---|---|
committer | Manuel Novoa III <mjn3@codepoet.org> | 2001-01-17 16:17:49 +0000 |
commit | 0c827cb73977b1ae72fb48075d412914583f23e0 (patch) | |
tree | 7e3e17b432898fe3401a2c93f1baec9982a708a4 /include | |
parent | fb644a9a153cea0269be99e8ff9fb9588e1f262e (diff) |
Increase BUFSIZ to 512 to avoid bug in busybox tar.
Diffstat (limited to 'include')
-rw-r--r-- | include/stdio.h | 2 |
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) |