Browse Source

Add wcstof(3) and wcstold(3).

ok miod@
OPENBSD_4_5
kettenis 15 years ago
parent
commit
8190702bc1
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      src/include/wchar.h

+ 6
- 1
src/include/wchar.h View File

@ -1,4 +1,4 @@
/* $OpenBSD: wchar.h,v 1.9 2008/06/26 05:42:04 ray Exp $ */
/* $OpenBSD: wchar.h,v 1.10 2009/01/13 18:18:31 kettenis Exp $ */
/* $NetBSD: wchar.h,v 1.16 2003/03/07 07:11:35 tshiozak Exp $ */
/*-
@ -146,6 +146,11 @@ long int wcstol(const wchar_t * __restrict, wchar_t ** __restrict, int base);
unsigned long int wcstoul(const wchar_t * __restrict, wchar_t ** __restrict,
int base);
#if __ISO_C_VISIBLE >= 1999
float wcstof(const wchar_t * __restrict, wchar_t ** __restrict);
long double wcstold(const wchar_t * __restrict, wchar_t ** __restrict);
#endif
#if (defined(__GNUC__) && __GNUC__ >= 2 && !defined(__STRICT_ANSI__)) || \
__ISO_C_VISIBLE >= 1999
/* LONGLONG */


Loading…
Cancel
Save