xref: /openbsd-src/lib/libc/locale/wcstof.c (revision c1a45aed656e7d5627c30c92421893a76f370ccb)
1 /*	$OpenBSD: wcstof.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	wcstof
10 typedef float		float_type;
11 #define STRTOD_FUNC	strtof
12 
13 #include "_wcstod.h"
14