Add initial snapshot of runtime crt.



git-svn-id: svn+ssh://svn.code.sf.net/p/mingw-w64/code/trunk@2 4407c894-4637-0410-b4f5-ada5f102cad1
diff --git a/mingw-w64-crt/stdio/wcstof.c b/mingw-w64-crt/stdio/wcstof.c
new file mode 100755
index 0000000..3068435
--- /dev/null
+++ b/mingw-w64-crt/stdio/wcstof.c
@@ -0,0 +1,6 @@
+#include <wchar.h>

+

+float wcstof( const wchar_t *nptr, wchar_t **endptr)

+{

+  return (wcstod(nptr, endptr));

+}