diff options
Diffstat (limited to 'lib/libc/stdlib/atoll.c')
-rw-r--r-- | lib/libc/stdlib/atoll.c | 9 |
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libc/stdlib/atoll.c b/lib/libc/stdlib/atoll.c index c0a7212..a3c15a2 100644 --- a/lib/libc/stdlib/atoll.c +++ b/lib/libc/stdlib/atoll.c @@ -33,18 +33,11 @@ * $FreeBSD$ */ -#include <errno.h> #include <stdlib.h> long long atoll(str) const char *str; { - long long r; - int saverr; - - saverr = errno; - r = strtoll(str, (char **)NULL, 10); - errno = saverr; - return r; + return strtoll(str, (char **)NULL, 10); } |