diff options
| author | Andrey A. Chernov <ache@FreeBSD.org> | 2001-12-30 03:34:46 +0000 | 
|---|---|---|
| committer | Andrey A. Chernov <ache@FreeBSD.org> | 2001-12-30 03:34:46 +0000 | 
| commit | f7388e0d3854026958e676c31ab50dc06e797f08 (patch) | |
| tree | 4aa0c4f3355219f0fd3e65a25e922b69f3f9523e /lib/libc/stdlib/atoi.c | |
| parent | 236f9adc7826e5c51300de4a7093082695ca0704 (diff) | |
Notes
Diffstat (limited to 'lib/libc/stdlib/atoi.c')
| -rw-r--r-- | lib/libc/stdlib/atoi.c | 8 | 
1 files changed, 1 insertions, 7 deletions
diff --git a/lib/libc/stdlib/atoi.c b/lib/libc/stdlib/atoi.c index 8e98a96e7111..17c91c1caddb 100644 --- a/lib/libc/stdlib/atoi.c +++ b/lib/libc/stdlib/atoi.c @@ -37,17 +37,11 @@  static char sccsid[] = "@(#)atoi.c	8.1 (Berkeley) 6/4/93";  #endif /* LIBC_SCCS and not lint */ -#include <errno.h>  #include <stdlib.h>  int  atoi(str)  	const char *str;  { -	int r, saverr; - -	saverr = errno; -	r = (int)strtol(str, (char **)NULL, 10); -	errno = saverr; -	return r; +	return (int)strtol(str, (char **)NULL, 10);  }  | 
