summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/atol.c
diff options
context:
space:
mode:
authorache <ache@FreeBSD.org>2001-12-30 03:34:46 +0000
committerache <ache@FreeBSD.org>2001-12-30 03:34:46 +0000
commita6e7c78be57ebd99da59ac7e960f115badce24fd (patch)
tree4aa0c4f3355219f0fd3e65a25e922b69f3f9523e /lib/libc/stdlib/atol.c
parentc79d7cebd4c6fd0a4f8f8e633c5e25ead4f5213e (diff)
downloadFreeBSD-src-a6e7c78be57ebd99da59ac7e960f115badce24fd.zip
FreeBSD-src-a6e7c78be57ebd99da59ac7e960f115badce24fd.tar.gz
Back out errno preserving
Diffstat (limited to 'lib/libc/stdlib/atol.c')
-rw-r--r--lib/libc/stdlib/atol.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/lib/libc/stdlib/atol.c b/lib/libc/stdlib/atol.c
index b85b8b2..d2e3c45 100644
--- a/lib/libc/stdlib/atol.c
+++ b/lib/libc/stdlib/atol.c
@@ -37,18 +37,11 @@
static char sccsid[] = "@(#)atol.c 8.1 (Berkeley) 6/4/93";
#endif /* LIBC_SCCS and not lint */
-#include <errno.h>
#include <stdlib.h>
long
atol(str)
const char *str;
{
- long r;
- int saverr;
-
- saverr = errno;
- r = strtol(str, (char **)NULL, 10);
- errno = saverr;
- return r;
+ return strtol(str, (char **)NULL, 10);
}
OpenPOWER on IntegriCloud