Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/include/wchar.h,v retrieving revision 1.9 retrieving revision 1.10 diff -u -p -r1.9 -r1.10 --- src/include/wchar.h 2000/12/29 15:26:33 1.9 +++ src/include/wchar.h 2001/09/27 16:30:35 1.10 @@ -1,4 +1,4 @@ -/* $NetBSD: wchar.h,v 1.9 2000/12/29 15:26:33 kleink Exp $ */ +/* $NetBSD: wchar.h,v 1.10 2001/09/27 16:30:35 yamt Exp $ */ /*- * Copyright (c)1999 Citrus Project, @@ -129,6 +129,11 @@ size_t wcslcat __P((wchar_t *, const wch size_t wcslcpy __P((wchar_t *, const wchar_t *, size_t)); int wcswidth __P((const wchar_t *, size_t)); int wcwidth __P((wchar_t)); + +unsigned long int wcstoul __P((const wchar_t * __restrict, wchar_t ** __restrict, + int base)); +long int wcstol __P((const wchar_t * __restrict, wchar_t ** __restrict, int base)); +double wcstod __P((const wchar_t * __restrict, wchar_t ** __restrict)); __END_DECLS #endif /* !_WCHAR_H_ */