From 64ccb6b58a3cfcd17feabfc4e88bb0819fef0cc1 Mon Sep 17 00:00:00 2001 From: Ingo Weinhold Date: Sun, 26 Jul 2009 15:28:33 +0000 Subject: [PATCH] Synced the different definitions of BUFSIZ with the internal one. What a mess... git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@31776 a95241bf-73f2-0310-859d-f6bbb57e9c96 --- headers/cpp/iostdio.h | 4 ++-- headers/posix/stdio.h | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/headers/cpp/iostdio.h b/headers/cpp/iostdio.h index 9ed47a4654..5ead4cb51b 100644 --- a/headers/cpp/iostdio.h +++ b/headers/cpp/iostdio.h @@ -1,4 +1,4 @@ -/* +/* Copyright (C) 1993 Free Software Foundation This file is part of the GNU IO Library. This library is free @@ -39,7 +39,7 @@ typedef _IO_FILE FILE; #define EOF (-1) #endif #ifndef BUFSIZ -#define BUFSIZ 1024 +#define BUFSIZ 8192 #endif /* #define size_t, fpos_t L_tmpname TMP_MAX */ diff --git a/headers/posix/stdio.h b/headers/posix/stdio.h index f140dbbd82..cfdf670953 100644 --- a/headers/posix/stdio.h +++ b/headers/posix/stdio.h @@ -14,7 +14,7 @@ * __gnuc_va_list */ -#define BUFSIZ 1024 +#define BUFSIZ 8192 #define _IOFBF 0 /* fully buffered */ #define _IOLBF 1 /* line buffered */ #define _IONBF 2 /* not buffered */