diff options
Diffstat (limited to 'libbb/xatonum.c')
-rw-r--r-- | libbb/xatonum.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libbb/xatonum.c b/libbb/xatonum.c index 3cdf634..60b65f5 100644 --- a/libbb/xatonum.c +++ b/libbb/xatonum.c @@ -59,7 +59,7 @@ unsigned bb_strtoui(const char *str, char **end, int b) /* A few special cases */ -int FAST_FUNC xatoi_u(const char *numstr) +int FAST_FUNC xatoi_positive(const char *numstr) { return xatou_range(numstr, 0, INT_MAX); } |