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.21 retrieving revision 1.21.2.1 diff -u -p -r1.21 -r1.21.2.1 --- src/include/wchar.h 2005/02/03 04:39:32 1.21 +++ src/include/wchar.h 2005/04/06 13:39:05 1.21.2.1 @@ -1,4 +1,4 @@ -/* $NetBSD: wchar.h,v 1.21 2005/02/03 04:39:32 perry Exp $ */ +/* $NetBSD: wchar.h,v 1.21.2.1 2005/04/06 13:39:05 tron Exp $ */ /*- * Copyright (c)1999 Citrus Project, @@ -93,6 +93,8 @@ typedef _BSD_SIZE_T_ size_t; #undef _BSD_SIZE_T_ #endif +struct tm; + __BEGIN_DECLS wint_t btowc(int); size_t mbrlen(const char * __restrict, size_t, mbstate_t * __restrict); @@ -108,6 +110,8 @@ int wcscmp(const wchar_t *, const wchar_ int wcscoll(const wchar_t *, const wchar_t *); wchar_t *wcscpy(wchar_t * __restrict, const wchar_t * __restrict); size_t wcscspn(const wchar_t *, const wchar_t *); +size_t wcsftime(wchar_t * __restrict, size_t, const wchar_t * __restrict, + const struct tm * __restrict); size_t wcslen(const wchar_t *); wchar_t *wcsncat(wchar_t * __restrict, const wchar_t * __restrict, size_t); int wcsncmp(const wchar_t *, const wchar_t *, size_t);