Skip to content

Commit

Permalink
Do not inline buffered_vfprintf to decrease stack usage.
Browse files Browse the repository at this point in the history
  • Loading branch information
Andreas Jaeger committed Nov 30, 2003
1 parent 52551d8 commit 8386c83
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stdio-common/vfprintf.c
Original file line number Diff line number Diff line change
Expand Up @@ -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 *,
Expand Down

0 comments on commit 8386c83

Please sign in to comment.