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