summaryrefslogtreecommitdiff
path: root/stdio-common
diff options
context:
space:
mode:
authorAndreas Jaeger <aj@suse.de>2003-11-30 19:21:39 +0000
committerAndreas Jaeger <aj@suse.de>2003-11-30 19:21:39 +0000
commit8386c834cab3a20c91f397af13dc5b8d74b2a1b2 (patch)
tree8edb6129df8b3e24514b42458ecaac53e0c0156a /stdio-common
parent52551d83003db1f2654f67277c1aae9567ff2979 (diff)
Do not inline buffered_vfprintf to decrease stack usage.
Diffstat (limited to 'stdio-common')
-rw-r--r--stdio-common/vfprintf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c
index 08333035d8..94fd37e5e4 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 *,