xref: /openbsd/lib/libc/locale/wcstod.c (revision 416b788c)
1 /*	$OpenBSD: wcstod.c,v 1.3 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	wcstod
10 typedef double		float_type;
11 #define STRTOD_FUNC	strtod
12 
13 #include "_wcstod.h"
14