diff options
Diffstat (limited to 'strings/str2int.c')
-rw-r--r-- | strings/str2int.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/strings/str2int.c b/strings/str2int.c index f5a7fed8a4a..58669287473 100644 --- a/strings/str2int.c +++ b/strings/str2int.c @@ -49,7 +49,8 @@ X >= 'a' && X <= 'z' ? X-'a'+10 :\ '\177') -char *str2int(register const char *src, register int radix, long int lower, long int upper, long int *val) +char *str2int(register const char *src, register int radix, long int lower, + long int upper, long int *val) { int sign; /* is number negative (+1) or positive (-1) */ int n; /* number of digits yet to be converted */ |