xref: /openbsd/lib/libc/locale/wcstold.c (revision 274d7c50)
1 /*	$OpenBSD: wcstold.c,v 1.1 2009/01/13 18:18:31 kettenis Exp $	*/
2 
3 #include <errno.h>
4 #include <stdlib.h>
5 #include <string.h>
6 #include <wchar.h>
7 #include <wctype.h>
8 
9 #define FUNCNAME	wcstold
10 typedef long double	float_type;
11 #define STRTOD_FUNC	strtold
12 
13 #include "_wcstod.h"
14