diff options
author | Stefan Sperling <stsp@cvs.openbsd.org> | 2011-10-16 13:22:07 +0000 |
---|---|---|
committer | Stefan Sperling <stsp@cvs.openbsd.org> | 2011-10-16 13:22:07 +0000 |
commit | 4fe602edb82788c2927d32c9e60005ce656e636e (patch) | |
tree | 4a14b5d972b883115c77405a41a933775dc39077 /include | |
parent | f30a2a52ed0b737d6beb7b1c5c4f411bea21bae4 (diff) |
Hook wcsftime(3) to the build; committing on behalf of espie
Diffstat (limited to 'include')
-rw-r--r-- | include/wchar.h | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/include/wchar.h b/include/wchar.h index 5570a34284d..a631fb0bd68 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: wchar.h,v 1.20 2011/10/16 13:20:51 stsp Exp $ */ +/* $OpenBSD: wchar.h,v 1.21 2011/10/16 13:22:06 stsp Exp $ */ /* $NetBSD: wchar.h,v 1.16 2003/03/07 07:11:35 tshiozak Exp $ */ /*- @@ -156,6 +156,8 @@ int wcsncasecmp(const wchar_t *, const wchar_t *, size_t); #if __ISO_C_VISIBLE >= 1999 float wcstof(const wchar_t * __restrict, wchar_t ** __restrict); long double wcstold(const wchar_t * __restrict, wchar_t ** __restrict); +size_t wcsftime(wchar_t * __restrict, size_t, const wchar_t *__restrict, + const struct tm *__restrict); #endif #if (defined(__GNUC__) && __GNUC__ >= 2 && !defined(__STRICT_ANSI__)) || \ |