aboutsummaryrefslogtreecommitdiff
path: root/libiberty/strtol.c
diff options
context:
space:
mode:
Diffstat (limited to 'libiberty/strtol.c')
-rw-r--r--libiberty/strtol.c5
1 files changed, 1 insertions, 4 deletions
diff --git a/libiberty/strtol.c b/libiberty/strtol.c
index d9f54cc..5f2a1ce 100644
--- a/libiberty/strtol.c
+++ b/libiberty/strtol.c
@@ -85,10 +85,7 @@ extern int errno;
* alphabets and digits are each contiguous.
*/
long
-strtol(nptr, endptr, base)
- const char *nptr;
- char **endptr;
- register int base;
+strtol(const char *nptr, char **endptr, register int base)
{
register const char *s = nptr;
register unsigned long acc;