summaryrefslogtreecommitdiff
path: root/src/stdio/putw.c
diff options
context:
space:
mode:
authorJakob Kaivo <jkk@ung.org>2019-02-09 13:27:42 -0500
committerJakob Kaivo <jkk@ung.org>2019-02-09 13:27:42 -0500
commitc6dc9c00d7bf7eefc50b0f7e26cfdfedd135184e (patch)
tree964f3ad733afa368a84caa3a372d88f754ad895b /src/stdio/putw.c
parent5c9339593ba663ebf1c898e2bce9b3391bfc22a6 (diff)
merge XOPEN identifiers
Diffstat (limited to 'src/stdio/putw.c')
-rw-r--r--src/stdio/putw.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/stdio/putw.c b/src/stdio/putw.c
new file mode 100644
index 00000000..8aac6d23
--- /dev/null
+++ b/src/stdio/putw.c
@@ -0,0 +1,11 @@
+#include <stdio.h>
+
+# define _XOPEN_LEGACY 500
+
+int putw(int w, FILE *stream)
+{
+}
+
+/*
+XOPEN(4,600)
+*/