summaryrefslogtreecommitdiffstats
path: root/libc-top-half/musl/src/stdio/getw.c
diff options
context:
space:
mode:
Diffstat (limited to 'libc-top-half/musl/src/stdio/getw.c')
-rw-r--r--libc-top-half/musl/src/stdio/getw.c8
1 files changed, 8 insertions, 0 deletions
diff --git a/libc-top-half/musl/src/stdio/getw.c b/libc-top-half/musl/src/stdio/getw.c
new file mode 100644
index 0000000..73d2c0d
--- /dev/null
+++ b/libc-top-half/musl/src/stdio/getw.c
@@ -0,0 +1,8 @@
+#define _GNU_SOURCE
+#include <stdio.h>
+
+int getw(FILE *f)
+{
+ int x;
+ return fread(&x, sizeof x, 1, f) ? x : EOF;
+}