Pārlūkot izejas kodu

LibC: Stub out wcstold

Tim Schumacher 3 gadi atpakaļ
vecāks
revīzija
e82dc7c77a

+ 6 - 0
Userland/Libraries/LibC/wchar.cpp

@@ -441,4 +441,10 @@ double wcstod(const wchar_t*, wchar_t**)
     dbgln("TODO: Implement wcstod()");
     dbgln("TODO: Implement wcstod()");
     TODO();
     TODO();
 }
 }
+
+long double wcstold(const wchar_t*, wchar_t**)
+{
+    dbgln("TODO: Implement wcstold()");
+    TODO();
+}
 }
 }

+ 1 - 0
Userland/Libraries/LibC/wchar.h

@@ -51,5 +51,6 @@ unsigned long wcstoul(const wchar_t*, wchar_t**, int);
 unsigned long long wcstoull(const wchar_t*, wchar_t**, int);
 unsigned long long wcstoull(const wchar_t*, wchar_t**, int);
 float wcstof(const wchar_t*, wchar_t**);
 float wcstof(const wchar_t*, wchar_t**);
 double wcstod(const wchar_t*, wchar_t**);
 double wcstod(const wchar_t*, wchar_t**);
+long double wcstold(const wchar_t*, wchar_t**);
 
 
 __END_DECLS
 __END_DECLS