summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibC/stdlib.h
diff options
context:
space:
mode:
authorAli Mohammad Pur <ali.mpfard@gmail.com>2021-12-19 23:29:21 +0330
committerAli Mohammad Pur <Ali.mpfard@gmail.com>2021-12-21 21:24:36 +0330
commite717ca32d1f6f017608dfcc8645ec448aa107c4d (patch)
treeec7447edef00a7727781bba6ffcdd6d670b9acc8 /Userland/Libraries/LibC/stdlib.h
parent14b91a3fe9e17583f87639d00e72807df102fd23 (diff)
downloadserenity-e717ca32d1f6f017608dfcc8645ec448aa107c4d.zip
LibC: Implement ungetwc()
Diffstat (limited to 'Userland/Libraries/LibC/stdlib.h')
-rw-r--r--Userland/Libraries/LibC/stdlib.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/Userland/Libraries/LibC/stdlib.h b/Userland/Libraries/LibC/stdlib.h
index 5fe5fd2a8a..68caf7a3cb 100644
--- a/Userland/Libraries/LibC/stdlib.h
+++ b/Userland/Libraries/LibC/stdlib.h
@@ -6,6 +6,7 @@
#pragma once
+#include <bits/wchar.h>
#include <stddef.h>
#include <sys/cdefs.h>
#include <sys/types.h>
@@ -14,7 +15,6 @@ __BEGIN_DECLS
#define EXIT_SUCCESS 0
#define EXIT_FAILURE 1
-#define MB_CUR_MAX 4
__attribute__((noreturn)) void _abort();