summaryrefslogtreecommitdiff
path: root/src/wchar/ungetwc.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wchar/ungetwc.c')
-rw-r--r--src/wchar/ungetwc.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/src/wchar/ungetwc.c b/src/wchar/ungetwc.c
new file mode 100644
index 00000000..7c40ddb5
--- /dev/null
+++ b/src/wchar/ungetwc.c
@@ -0,0 +1,12 @@
+#include <wchar.h>
+#include "stdio.h"
+
+wint_t ungetwc(wint_t c, FILE * stream)
+{
+ (void)c; (void)stream;
+ return -1;
+}
+
+/*
+STDC(199409)
+*/