diff options
author | bde <bde@FreeBSD.org> | 1997-04-13 13:37:56 +0000 |
---|---|---|
committer | bde <bde@FreeBSD.org> | 1997-04-13 13:37:56 +0000 |
commit | d6e9aa93dcc0d53a85c5bea5672237a1f2fe96f8 (patch) | |
tree | 01f0cfd85fe5fc5e878683a39a8d1ab8c5384f8a /lib/libc/stdlib/strtol.3 | |
parent | 9d3ce8b6e3e7b6207a6c6fb57b2609a78c8c5bde (diff) | |
download | FreeBSD-src-d6e9aa93dcc0d53a85c5bea5672237a1f2fe96f8.zip FreeBSD-src-d6e9aa93dcc0d53a85c5bea5672237a1f2fe96f8.tar.gz |
Fixed missing consts in synopsis.
Diffstat (limited to 'lib/libc/stdlib/strtol.3')
-rw-r--r-- | lib/libc/stdlib/strtol.3 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/libc/stdlib/strtol.3 b/lib/libc/stdlib/strtol.3 index 4ebf069..3d43fb3 100644 --- a/lib/libc/stdlib/strtol.3 +++ b/lib/libc/stdlib/strtol.3 @@ -45,13 +45,13 @@ .Fd #include <stdlib.h> .Fd #include <limits.h> .Ft long -.Fn strtol "char *nptr" "char **endptr" "int base" +.Fn strtol "const char *nptr" "char **endptr" "int base" .Fd #include <sys/types.h> .Fd #include <stdlib.h> .Fd #include <limits.h> .Ft quad_t -.Fn strtoq "char *nptr" "char **endptr" "int base" +.Fn strtoq "const char *nptr" "char **endptr" "int base" .Sh DESCRIPTION The .Fn strtol |