diff options
author | Florian Weimer <fweimer@redhat.com> | 2017-08-31 18:30:02 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2017-08-31 18:52:00 +0200 |
commit | 2fa6d086d15f15f2fde50bcac5f552f652d3ef36 (patch) | |
tree | 8fe5c9b71a86d1d42d577729bc1295bfb5bc4972 /stdio-common/vfprintf.c | |
parent | b41bd5bc83b23f62f6f0815d20ed1e1185c58086 (diff) | |
download | glibc-2fa6d086d15f15f2fde50bcac5f552f652d3ef36.tar.gz glibc-2fa6d086d15f15f2fde50bcac5f552f652d3ef36.tar.xz glibc-2fa6d086d15f15f2fde50bcac5f552f652d3ef36.zip |
stdio-common: Remove internal_function attribute
Diffstat (limited to 'stdio-common/vfprintf.c')
-rw-r--r-- | stdio-common/vfprintf.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index 089bcefaf9..23d2679f39 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -1220,7 +1220,7 @@ static const uint8_t jump_table[] = /* Helper function to provide temporary buffering for unbuffered streams. */ static int buffered_vfprintf (FILE *stream, const CHAR_T *fmt, va_list) - __THROW __attribute__ ((noinline)) internal_function; + __THROW __attribute__ ((noinline)); /* Handle positional format specifiers. */ static int printf_positional (_IO_FILE *s, @@ -2291,7 +2291,6 @@ static const struct _IO_jump_t _IO_helper_jumps libio_vtable = #endif static int -internal_function buffered_vfprintf (_IO_FILE *s, const CHAR_T *format, _IO_va_list args) { |