summaryrefslogtreecommitdiff
path: root/src/curses/addnwstr.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/curses/addnwstr.c')
-rw-r--r--src/curses/addnwstr.c15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/curses/addnwstr.c b/src/curses/addnwstr.c
new file mode 100644
index 00000000..25e53a3b
--- /dev/null
+++ b/src/curses/addnwstr.c
@@ -0,0 +1,15 @@
+#include <curses.h>
+#include "_curses.h"
+
+int waddnwstr(WINDOW * win, const wchar_t * wstr, int n)
+{
+ (void)win; (void)wstr; (void)n;
+ return 0;
+}
+
+CURSES_FUNCTION2(int, addnwstr, const wchar_t *, int)
+
+/*
+XOPEN(400)
+LINK(curses)
+*/