mirror of
https://sourceware.org/git/glibc.git
synced 2025-01-11 03:40:06 +00:00
stdio-common: Remove internal_function attribute
This commit is contained in:
parent
b41bd5bc83
commit
2fa6d086d1
@ -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>
|
2017-08-31 Florian Weimer <fweimer@redhat.com>
|
||||||
|
|
||||||
* posix/fnmatch.c (internal_function): Remove definition.
|
* posix/fnmatch.c (internal_function): Remove definition.
|
||||||
|
@ -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,
|
static wchar_t *group_number (wchar_t *buf, wchar_t *bufend,
|
||||||
unsigned int intdig_no, const char *grouping,
|
unsigned int intdig_no, const char *grouping,
|
||||||
wchar_t thousands_sep, int ngroups)
|
wchar_t thousands_sep, int ngroups);
|
||||||
internal_function;
|
|
||||||
|
|
||||||
struct hack_digit_param
|
struct hack_digit_param
|
||||||
{
|
{
|
||||||
@ -1319,7 +1318,6 @@ __guess_grouping (unsigned int intdig_max, const char *grouping)
|
|||||||
Return the new end of buffer. */
|
Return the new end of buffer. */
|
||||||
|
|
||||||
static wchar_t *
|
static wchar_t *
|
||||||
internal_function
|
|
||||||
group_number (wchar_t *buf, wchar_t *bufend, unsigned int intdig_no,
|
group_number (wchar_t *buf, wchar_t *bufend, unsigned int intdig_no,
|
||||||
const char *grouping, wchar_t thousands_sep, int ngroups)
|
const char *grouping, wchar_t thousands_sep, int ngroups)
|
||||||
{
|
{
|
||||||
|
@ -1220,7 +1220,7 @@ static const uint8_t jump_table[] =
|
|||||||
|
|
||||||
/* Helper function to provide temporary buffering for unbuffered streams. */
|
/* Helper function to provide temporary buffering for unbuffered streams. */
|
||||||
static int buffered_vfprintf (FILE *stream, const CHAR_T *fmt, va_list)
|
static int buffered_vfprintf (FILE *stream, const CHAR_T *fmt, va_list)
|
||||||
__THROW __attribute__ ((noinline)) internal_function;
|
__THROW __attribute__ ((noinline));
|
||||||
|
|
||||||
/* Handle positional format specifiers. */
|
/* Handle positional format specifiers. */
|
||||||
static int printf_positional (_IO_FILE *s,
|
static int printf_positional (_IO_FILE *s,
|
||||||
@ -2291,7 +2291,6 @@ static const struct _IO_jump_t _IO_helper_jumps libio_vtable =
|
|||||||
#endif
|
#endif
|
||||||
|
|
||||||
static int
|
static int
|
||||||
internal_function
|
|
||||||
buffered_vfprintf (_IO_FILE *s, const CHAR_T *format,
|
buffered_vfprintf (_IO_FILE *s, const CHAR_T *format,
|
||||||
_IO_va_list args)
|
_IO_va_list args)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user