blob: 40d76c791de04f25ba4b077cb5affbdbc0241e8f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* $OpenBSD: wcstof.c,v 1.1 2009/01/13 18:18:31 kettenis Exp $ */
#include <errno.h>
#include <stdlib.h>
#include <string.h>
#include <wchar.h>
#include <wctype.h>
#define FUNCNAME wcstof
typedef float float_type;
#define STRTOD_FUNC strtof
#include "_wcstod.h"
|