From 3a67d8efd0214fff283fc0ebd3c7fcffdeeb26f4 Mon Sep 17 00:00:00 2001 From: "Tim J. Robbins" Date: Thu, 12 Sep 2002 09:25:27 +0000 Subject: [PATCH] Correct type of second argument: it is wchar_t ** restrict, not wchar_t * restrict. --- lib/libc/locale/wcstol.3 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libc/locale/wcstol.3 b/lib/libc/locale/wcstol.3 index 8149d4413e9..83bd15a1898 100644 --- a/lib/libc/locale/wcstol.3 +++ b/lib/libc/locale/wcstol.3 @@ -39,9 +39,9 @@ integer .Sh SYNOPSIS .In wchar.h .Ft long -.Fn wcstol "const wchar_t * restrict nptr" "wchar_t * restrict endptr" "int base" +.Fn wcstol "const wchar_t * restrict nptr" "wchar_t ** restrict endptr" "int base" .Ft "unsigned long" -.Fn wcstoul "const wchar_t * restrict nptr" "wchar_t * restrict endptr" "int base" +.Fn wcstoul "const wchar_t * restrict nptr" "wchar_t ** restrict endptr" "int base" .Sh DESCRIPTION The .Fn wcstol