summaryrefslogtreecommitdiffstats
path: root/lib/libc/stdlib/strtoul.3
diff options
context:
space:
mode:
authorrobert <robert@FreeBSD.org>2002-08-15 09:25:04 +0000
committerrobert <robert@FreeBSD.org>2002-08-15 09:25:04 +0000
commit043ed1f5818681c934c1f781e5c12082c79b771c (patch)
treeb37b20746e471ae334376a361c54543969e8e35f /lib/libc/stdlib/strtoul.3
parentef527f85f2070c1b71c9b8a28ed1d2b937e93ef0 (diff)
downloadFreeBSD-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/strtoul.3')
-rw-r--r--lib/libc/stdlib/strtoul.36
1 files changed, 3 insertions, 3 deletions
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
OpenPOWER on IntegriCloud