From: Andreas Jaeger Date: Sun, 30 Nov 2003 19:21:39 +0000 (+0000) Subject: Do not inline buffered_vfprintf to decrease stack usage. X-Git-Tag: cvs/glibc-2_3_3~3 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=8386c834cab3a20c91f397af13dc5b8d74b2a1b2;p=thirdparty%2Fglibc.git Do not inline buffered_vfprintf to decrease stack usage. --- diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index 08333035d82..94fd37e5e4e 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -209,7 +209,7 @@ static const CHAR_T null[] = L_("(null)"); /* Helper function to provide temporary buffering for unbuffered streams. */ static int buffered_vfprintf __P ((FILE *stream, const CHAR_T *fmt, va_list)) - internal_function; + __attribute__ ((noinline)) internal_function; /* Handle unknown format specifier. */ static int printf_unknown __P ((FILE *, const struct printf_info *,