Kai Tietz | c8c94d8 | 2007-08-20 14:22:43 +0000 | [diff] [blame^] | 1 | /** |
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 Tietz | 518dd33 | 2007-08-10 09:54:15 +0000 | [diff] [blame] | 6 | #include <wchar.h> |
7 | |||||
8 | float wcstof( const wchar_t *nptr, wchar_t **endptr) | ||||
9 | { | ||||
10 | return (wcstod(nptr, endptr)); | ||||
11 | } |