From 783ddd261dbe5022c71eb12d11daac8d162f50a2 Mon Sep 17 00:00:00 2001 From: Tim Schumacher Date: Wed, 22 Sep 2021 12:15:20 +0000 Subject: [PATCH] LibC: Stub out wcstoull --- Userland/Libraries/LibC/wchar.cpp | 6 ++++++ Userland/Libraries/LibC/wchar.h | 1 + 2 files changed, 7 insertions(+) diff --git a/Userland/Libraries/LibC/wchar.cpp b/Userland/Libraries/LibC/wchar.cpp index af9de8049be..11b17ed999a 100644 --- a/Userland/Libraries/LibC/wchar.cpp +++ b/Userland/Libraries/LibC/wchar.cpp @@ -423,4 +423,10 @@ unsigned long wcstoul(const wchar_t*, wchar_t**, int) dbgln("TODO: Implement wcstoul()"); TODO(); } + +unsigned long long wcstoull(const wchar_t*, wchar_t**, int) +{ + dbgln("TODO: Implement wcstoull()"); + TODO(); +} } diff --git a/Userland/Libraries/LibC/wchar.h b/Userland/Libraries/LibC/wchar.h index a79f2d61fc8..f8e2b313741 100644 --- a/Userland/Libraries/LibC/wchar.h +++ b/Userland/Libraries/LibC/wchar.h @@ -48,5 +48,6 @@ wchar_t* wmemcpy(wchar_t*, const wchar_t*, size_t); wchar_t* wmemset(wchar_t*, wchar_t, size_t); wchar_t* wmemmove(wchar_t*, const wchar_t*, size_t); unsigned long wcstoul(const wchar_t*, wchar_t**, int); +unsigned long long wcstoull(const wchar_t*, wchar_t**, int); __END_DECLS