Explorar el Código

LibC: Stub out wcstold

Tim Schumacher hace 3 años
padre
commit
e82dc7c77a
Se han modificado 2 ficheros con 7 adiciones y 0 borrados
  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