diff options
| author | joerg <joerg@NetBSD.org> | 2013-04-18 22:23:17 +0000 |
|---|---|---|
| committer | joerg <joerg@NetBSD.org> | 2013-04-18 22:23:17 +0000 |
| commit | a01984ea389d0f99eaa2d3fb6539c299e89bee89 (patch) | |
| tree | 8edb49dd747a2163c3695459991c08b05d205bdd /include | |
| parent | 58a085140cefc241d8da6d36ecdea47bbddd26e3 (diff) | |
Add wcstof_l, wcstod_l and wcstold_l.
Diffstat (limited to 'include')
| -rw-r--r-- | include/wchar.h | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/include/wchar.h b/include/wchar.h index 6c31fd02f1a..db180f6139d 100644 --- a/include/wchar.h +++ b/include/wchar.h @@ -1,4 +1,4 @@ -/* $NetBSD: wchar.h,v 1.32 2013/04/16 16:52:13 joerg Exp $ */ +/* $NetBSD: wchar.h,v 1.33 2013/04/18 22:23:17 joerg Exp $ */ /*- * Copyright (c)1999 Citrus Project, @@ -211,6 +211,10 @@ __END_DECLS typedef struct _locale *locale_t; # define __LOCALE_T_DECLARED # endif +float wcstof_l(const wchar_t * __restrict, wchar_t ** __restrict, locale_t); +double wcstod_l(const wchar_t * __restrict, wchar_t ** __restrict, locale_t); +long double wcstold_l(const wchar_t * __restrict, wchar_t ** __restrict, + locale_t); long int wcstol_l(const wchar_t * __restrict, wchar_t ** __restrict, int, locale_t); unsigned long int wcstoul_l(const wchar_t * __restrict, |
