blob: 48a388bbdfacef4039409a3219a7de21438d3370 [file] [log] [blame]
Kai Tietzc8c94d82007-08-20 14:22:43 +00001/**
2 * This file has no copyright assigned and is placed in the Public Domain.
3 * This file is part of the w64 mingw-runtime package.
4 * No warranty is given; refer to the file DISCLAIMER within this package.
5 */
Kai Tietz518dd332007-08-10 09:54:15 +00006#include <wchar.h>
7
8float wcstof( const wchar_t *nptr, wchar_t **endptr)
9{
10 return (wcstod(nptr, endptr));
11}