diff options
author | robert <robert@FreeBSD.org> | 2002-08-15 09:25:04 +0000 |
---|---|---|
committer | robert <robert@FreeBSD.org> | 2002-08-15 09:25:04 +0000 |
commit | 043ed1f5818681c934c1f781e5c12082c79b771c (patch) | |
tree | b37b20746e471ae334376a361c54543969e8e35f /lib/libc/stdlib | |
parent | ef527f85f2070c1b71c9b8a28ed1d2b937e93ef0 (diff) | |
download | FreeBSD-src-043ed1f5818681c934c1f781e5c12082c79b771c.zip FreeBSD-src-043ed1f5818681c934c1f781e5c12082c79b771c.tar.gz |
- Add the 'restrict' qualifier to the function prototypes and
definitions of the functions that convert strings to numbers
and are defined by IEEE Std 1003-1.2001.
- Use ANSI-C function definitions for all of the functions
mentioned above plus strtouq and strtoq.
- Update the prototypes in the manual pages.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r-- | lib/libc/stdlib/strtod.3 | 2 | ||||
-rw-r--r-- | lib/libc/stdlib/strtod.c | 4 | ||||
-rw-r--r-- | lib/libc/stdlib/strtoimax.c | 5 | ||||
-rw-r--r-- | lib/libc/stdlib/strtol.3 | 6 | ||||
-rw-r--r-- | lib/libc/stdlib/strtol.c | 5 | ||||
-rw-r--r-- | lib/libc/stdlib/strtoll.c | 5 | ||||
-rw-r--r-- | lib/libc/stdlib/strtoq.c | 5 | ||||
-rw-r--r-- | lib/libc/stdlib/strtoul.3 | 6 | ||||
-rw-r--r-- | lib/libc/stdlib/strtoul.c | 5 | ||||
-rw-r--r-- | lib/libc/stdlib/strtoull.c | 5 | ||||
-rw-r--r-- | lib/libc/stdlib/strtoumax.c | 5 | ||||
-rw-r--r-- | lib/libc/stdlib/strtouq.c | 5 |
12 files changed, 17 insertions, 41 deletions
diff --git a/lib/libc/stdlib/strtod.3 b/lib/libc/stdlib/strtod.3 index 6922e27..5f3a910 100644 --- a/lib/libc/stdlib/strtod.3 +++ b/lib/libc/stdlib/strtod.3 @@ -49,7 +49,7 @@ string to double .Sh SYNOPSIS .In stdlib.h .Ft double -.Fn strtod "const char *nptr" "char **endptr" +.Fn strtod "const char *restrict nptr" "char **restrict endptr" .Sh DESCRIPTION The .Fn strtod diff --git a/lib/libc/stdlib/strtod.c b/lib/libc/stdlib/strtod.c index 9295583..73765ba 100644 --- a/lib/libc/stdlib/strtod.c +++ b/lib/libc/stdlib/strtod.c @@ -1191,9 +1191,9 @@ static double tinytens[] = { 1e-16, 1e-32 }; double strtod #ifdef KR_headers - (s00, se) CONST char *s00; char **se; + (s00, se) CONST char *__restrict s00; char **__restrict se; #else - (CONST char *s00, char **se) + (CONST char *__restrict s00, char **__restrict se) #endif { int bb2, bb5, bbe, bd2, bd5, bbbits, bs2, c, dsign, diff --git a/lib/libc/stdlib/strtoimax.c b/lib/libc/stdlib/strtoimax.c index 5f86e3a..a41c74f 100644 --- a/lib/libc/stdlib/strtoimax.c +++ b/lib/libc/stdlib/strtoimax.c @@ -49,10 +49,7 @@ __FBSDID("$FreeBSD$"); * alphabets and digits are each contiguous. */ intmax_t -strtoimax(nptr, endptr, base) - const char *nptr; - char **endptr; - int base; +strtoimax(const char *__restrict nptr, char **__restrict endptr, int base) { const char *s; uintmax_t acc; diff --git a/lib/libc/stdlib/strtol.3 b/lib/libc/stdlib/strtol.3 index 7c610f7..25acc8a 100644 --- a/lib/libc/stdlib/strtol.3 +++ b/lib/libc/stdlib/strtol.3 @@ -52,12 +52,12 @@ integer .In stdlib.h .In limits.h .Ft long -.Fn strtol "const char *nptr" "char **endptr" "int base" +.Fn strtol "const char *restrict nptr" "char **restrict endptr" "int base" .Ft long long -.Fn strtoll "const char *nptr" "char **endptr" "int base" +.Fn strtoll "const char *restrict nptr" "char **restrict endptr" "int base" .In inttypes.h .Ft intmax_t -.Fn strtoimax "const char *nptr" "char **endptr" "int base" +.Fn strtoimax "const char *restrict nptr" "char **restrict endptr" "int base" .In sys/types.h .In stdlib.h .In limits.h diff --git a/lib/libc/stdlib/strtol.c b/lib/libc/stdlib/strtol.c index 265b01e..0f9e1ed 100644 --- a/lib/libc/stdlib/strtol.c +++ b/lib/libc/stdlib/strtol.c @@ -50,10 +50,7 @@ __FBSDID("$FreeBSD$"); * alphabets and digits are each contiguous. */ long -strtol(nptr, endptr, base) - const char *nptr; - char **endptr; - int base; +strtol(const char *__restrict nptr, char **__restrict endptr, int base) { const char *s; unsigned long acc; diff --git a/lib/libc/stdlib/strtoll.c b/lib/libc/stdlib/strtoll.c index f0c245f..3d0b5c6 100644 --- a/lib/libc/stdlib/strtoll.c +++ b/lib/libc/stdlib/strtoll.c @@ -49,10 +49,7 @@ __FBSDID("$FreeBSD$"); * alphabets and digits are each contiguous. */ long long -strtoll(nptr, endptr, base) - const char *nptr; - char **endptr; - int base; +strtoll(const char *__restrict nptr, char **__restrict endptr, int base) { const char *s; unsigned long long acc; diff --git a/lib/libc/stdlib/strtoq.c b/lib/libc/stdlib/strtoq.c index 78c1b08..a3e37af 100644 --- a/lib/libc/stdlib/strtoq.c +++ b/lib/libc/stdlib/strtoq.c @@ -45,10 +45,7 @@ __FBSDID("$FreeBSD$"); * Convert a string to a quad integer. */ quad_t -strtoq(nptr, endptr, base) - const char *nptr; - char **endptr; - int base; +strtoq(const char *nptr, char **endptr, int base) { return strtoll(nptr, endptr, base); diff --git a/lib/libc/stdlib/strtoul.3 b/lib/libc/stdlib/strtoul.3 index 3eb602e..dae6c13 100644 --- a/lib/libc/stdlib/strtoul.3 +++ b/lib/libc/stdlib/strtoul.3 @@ -52,12 +52,12 @@ integer .In stdlib.h .In limits.h .Ft "unsigned long" -.Fn strtoul "const char *nptr" "char **endptr" "int base" +.Fn strtoul "const char *restrict nptr" "char **restrict endptr" "int base" .Ft "unsigned long long" -.Fn strtoull "const char *nptr" "char **endptr" "int base" +.Fn strtoull "const char *restrict nptr" "char **restrict endptr" "int base" .In inttypes.h .Ft uintmax_t -.Fn strtoumax "const char *nptr" "char **endptr" "int base" +.Fn strtoumax "const char *restrict nptr" "char **restrict endptr" "int base" .In sys/types.h .In stdlib.h .In limits.h diff --git a/lib/libc/stdlib/strtoul.c b/lib/libc/stdlib/strtoul.c index ba23bd0..ee54a41 100644 --- a/lib/libc/stdlib/strtoul.c +++ b/lib/libc/stdlib/strtoul.c @@ -49,10 +49,7 @@ __FBSDID("$FreeBSD$"); * alphabets and digits are each contiguous. */ unsigned long -strtoul(nptr, endptr, base) - const char *nptr; - char **endptr; - int base; +strtoul(const char *__restrict nptr, char **__restrict endptr, int base) { const char *s; unsigned long acc; diff --git a/lib/libc/stdlib/strtoull.c b/lib/libc/stdlib/strtoull.c index bda9e30..08bf118 100644 --- a/lib/libc/stdlib/strtoull.c +++ b/lib/libc/stdlib/strtoull.c @@ -49,10 +49,7 @@ __FBSDID("$FreeBSD$"); * alphabets and digits are each contiguous. */ unsigned long long -strtoull(nptr, endptr, base) - const char *nptr; - char **endptr; - int base; +strtoull(const char *__restrict nptr, char **__restrict endptr, int base) { const char *s; unsigned long long acc; diff --git a/lib/libc/stdlib/strtoumax.c b/lib/libc/stdlib/strtoumax.c index 503fb6b..07206be 100644 --- a/lib/libc/stdlib/strtoumax.c +++ b/lib/libc/stdlib/strtoumax.c @@ -49,10 +49,7 @@ __FBSDID("$FreeBSD$"); * alphabets and digits are each contiguous. */ uintmax_t -strtoumax(nptr, endptr, base) - const char *nptr; - char **endptr; - int base; +strtoumax(const char *__restrict nptr, char **__restrict endptr, int base) { const char *s; uintmax_t acc; diff --git a/lib/libc/stdlib/strtouq.c b/lib/libc/stdlib/strtouq.c index 8b3e30e..1a14f36 100644 --- a/lib/libc/stdlib/strtouq.c +++ b/lib/libc/stdlib/strtouq.c @@ -45,10 +45,7 @@ __FBSDID("$FreeBSD$"); * Convert a string to an unsigned quad integer. */ u_quad_t -strtouq(nptr, endptr, base) - const char *nptr; - char **endptr; - int base; +strtouq(const char *nptr, char **endptr, int base) { return strtoull(nptr, endptr, base); |