diff options
author | Tim Schumacher <timschumi@gmx.de> | 2021-09-22 12:15:20 +0000 |
---|---|---|
committer | Brian Gianforcaro <b.gianfo@gmail.com> | 2021-10-03 05:28:51 +0000 |
commit | 783ddd261dbe5022c71eb12d11daac8d162f50a2 (patch) | |
tree | 26a15c892f5cb25ce19f0c35a2ce3814f993735c /Userland/Libraries/LibC/wchar.h | |
parent | a65f52d8dec5460e09704168414c6b8920333dc5 (diff) | |
download | serenity-783ddd261dbe5022c71eb12d11daac8d162f50a2.zip |
LibC: Stub out wcstoull
Diffstat (limited to 'Userland/Libraries/LibC/wchar.h')
-rw-r--r-- | Userland/Libraries/LibC/wchar.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Userland/Libraries/LibC/wchar.h b/Userland/Libraries/LibC/wchar.h index a79f2d61fc..f8e2b31374 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 |