Selaa lähdekoodia

LibC: Stub out wcstold

Tim Schumacher 3 vuotta sitten
vanhempi
commit
e82dc7c77a
2 muutettua tiedostoa jossa 7 lisäystä ja 0 poistoa
  1. 6 0
      Userland/Libraries/LibC/wchar.cpp
  2. 1 0
      Userland/Libraries/LibC/wchar.h

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

@@ -441,4 +441,10 @@ double wcstod(const wchar_t*, wchar_t**)
     dbgln("TODO: Implement wcstod()");
     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);
 float wcstof(const wchar_t*, wchar_t**);
 double wcstod(const wchar_t*, wchar_t**);
+long double wcstold(const wchar_t*, wchar_t**);
 
 __END_DECLS