summaryrefslogtreecommitdiff
path: root/LibC/wchar.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-02-24 15:19:32 +0100
committerAndreas Kling <awesomekling@gmail.com>2019-02-24 15:20:07 +0100
commit93c0dfd1d7b97bff8caaec761aecca4a929c3412 (patch)
tree7171e0cbb5bdd5f3d967a8cf75d74fd564355587 /LibC/wchar.h
parent9fd4f4862baa52d7aa5d4b842224a8293251c13f (diff)
downloadserenity-93c0dfd1d7b97bff8caaec761aecca4a929c3412.zip
LibC: A bunch of compat work towards porting GCC.
Diffstat (limited to 'LibC/wchar.h')
-rw-r--r--LibC/wchar.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/LibC/wchar.h b/LibC/wchar.h
index e69de29bb2..e46806fcc5 100644
--- a/LibC/wchar.h
+++ b/LibC/wchar.h
@@ -0,0 +1,12 @@
+#pragma once
+
+#include <sys/cdefs.h>
+#include <stddef.h>
+
+__BEGIN_DECLS
+
+#ifndef WEOF
+#define WEOF (0xffffffffu)
+#endif
+
+__END_DECLS