]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
stdio-common: Remove internal_function attribute
authorFlorian Weimer <fweimer@redhat.com>
Thu, 31 Aug 2017 16:30:02 +0000 (18:30 +0200)
committerFlorian Weimer <fweimer@redhat.com>
Thu, 31 Aug 2017 16:52:00 +0000 (18:52 +0200)
ChangeLog
stdio-common/printf_fp.c
stdio-common/vfprintf.c

index 9ca31d04f4f79a28cdf4f943194bf6ae444888f9..afeb02f73345dd84b319ef7155476a5e281e0f3f 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2017-08-31  Florian Weimer  <fweimer@redhat.com>
+
+       * stdio-common/printf_fp.c (group_number): Remove
+       internal_function.
+       * stdio-common/vfprintf.c (buffered_vfprintf): Likewise.
+
 2017-08-31  Florian Weimer  <fweimer@redhat.com>
 
        * posix/fnmatch.c (internal_function): Remove definition.
index 2633a02cc50f4188937384d2ddc5f2b16b30e93b..994497cd225d57502179394c94c83fa7067d8ca6 100644 (file)
@@ -143,8 +143,7 @@ extern mp_size_t __mpn_extract_long_double (mp_ptr res_ptr, mp_size_t size,
 
 static wchar_t *group_number (wchar_t *buf, wchar_t *bufend,
                              unsigned int intdig_no, const char *grouping,
-                             wchar_t thousands_sep, int ngroups)
-     internal_function;
+                             wchar_t thousands_sep, int ngroups);
 
 struct hack_digit_param
 {
@@ -1319,7 +1318,6 @@ __guess_grouping (unsigned int intdig_max, const char *grouping)
    Return the new end of buffer.  */
 
 static wchar_t *
-internal_function
 group_number (wchar_t *buf, wchar_t *bufend, unsigned int intdig_no,
              const char *grouping, wchar_t thousands_sep, int ngroups)
 {
index 089bcefaf9a2e461b772b5d06310730eff87e394..23d2679f39a95fb8b852a88d643e9cd6c24b08dd 100644 (file)
@@ -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)
 {