summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/stdio/_stdio.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/stdio/_stdio.h b/src/stdio/_stdio.h
index f82edaa0..5ec8b884 100644
--- a/src/stdio/_stdio.h
+++ b/src/stdio/_stdio.h
@@ -1,6 +1,7 @@
#ifndef ___STDIO_H__
#define ___STDIO_H__
+#include <stddef.h>
#include <stdarg.h>
#include <stdio.h>
@@ -10,6 +11,10 @@
#include "sys/types/pid_t.c"
#endif
+#ifndef L_ctermid
+#include "L_ctermid.c"
+#endif
+
struct __FILE {
fpos_t pos;
char *buf;
@@ -45,6 +50,7 @@ struct __FILE {
struct io_options {
const char *fnname;
char *string;
+ wchar_t *wstring;
struct __FILE *stream;
size_t maxlen;
int fd;