浏览代码

LibC: Stub out wcstold

Tim Schumacher 3 年之前
父节点
当前提交
e82dc7c77a
共有 2 个文件被更改,包括 7 次插入0 次删除
  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