mirror of
git://sourceware.org/git/glibc.git
synced 2024-11-27 03:41:23 +08:00
Use prototype definition for __strtol.
This patch fixes those warnings by using a prototype definition for __strtol. Tested for x86_64 that stripped installed shared libraries are unchanged by this patch. * stdlib/strtol.c (__strtol): Use prototype definition.
This commit is contained in:
parent
2a1cfd94a2
commit
bf438382bd
@ -1,5 +1,7 @@
|
|||||||
2014-11-13 Joseph Myers <joseph@codesourcery.com>
|
2014-11-13 Joseph Myers <joseph@codesourcery.com>
|
||||||
|
|
||||||
|
* stdlib/strtol.c (__strtol): Use prototype definition.
|
||||||
|
|
||||||
[BZ #17594]
|
[BZ #17594]
|
||||||
* stdlib/strtol.c (SYM__): New macro.
|
* stdlib/strtol.c (SYM__): New macro.
|
||||||
(SYM__1): Likewise.
|
(SYM__1): Likewise.
|
||||||
|
@ -104,10 +104,7 @@ libc_hidden_def (INTERNAL (strtol))
|
|||||||
|
|
||||||
|
|
||||||
INT
|
INT
|
||||||
__strtol (nptr, endptr, base)
|
__strtol (const STRING_TYPE *nptr, STRING_TYPE **endptr, int base)
|
||||||
const STRING_TYPE *nptr;
|
|
||||||
STRING_TYPE **endptr;
|
|
||||||
int base;
|
|
||||||
{
|
{
|
||||||
return INTERNAL (__strtol_l) (nptr, endptr, base, 0, _NL_CURRENT_LOCALE);
|
return INTERNAL (__strtol_l) (nptr, endptr, base, 0, _NL_CURRENT_LOCALE);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user