summaryrefslogtreecommitdiff
path: root/lib/libc/stdlib
diff options
context:
space:
mode:
authorjtc <jtc@NetBSD.org>1993-11-24 23:28:21 +0000
committerjtc <jtc@NetBSD.org>1993-11-24 23:28:21 +0000
commit71dad4e4a908130c4a0ee008716004275cc54487 (patch)
tree656140e8a1c8052a7005e7a79f0b874f3cfb3b47 /lib/libc/stdlib
parent685b5f8bc6e69413059fd110fae4c03899c102d9 (diff)
Strtoul returns a unsigned long.
Diffstat (limited to 'lib/libc/stdlib')
-rw-r--r--lib/libc/stdlib/strtoul.33
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/libc/stdlib/strtoul.3 b/lib/libc/stdlib/strtoul.3
index 040f7855b49..1c8fc548e65 100644
--- a/lib/libc/stdlib/strtoul.3
+++ b/lib/libc/stdlib/strtoul.3
@@ -34,7 +34,7 @@
.\" SUCH DAMAGE.
.\"
.\" from: @(#)strtoul.3 5.3 (Berkeley) 6/29/91
-.\" $Id: strtoul.3,v 1.2 1993/08/01 07:44:16 mycroft Exp $
+.\" $Id: strtoul.3,v 1.3 1993/11/24 23:28:21 jtc Exp $
.\"
.Dd June 29, 1991
.Dt STRTOUL 3
@@ -45,6 +45,7 @@
.Sh SYNOPSIS
.Fd #include <stdlib.h>
.Fd #include <limits.h>
+.Ft unsigned long
.Fn strtoul "const char *nptr" "char **endptr" "int base"
.Sh DESCRIPTION
The