xref: /openbsd-src/lib/libc/locale/wcstof.c (revision de8cc8edbc71bd3e3bc7fbffa27ba0e564c37d8b)
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