summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--_stdio.d13
-rw-r--r--_stdio.h39
-rw-r--r--_wchar.d4
-rw-r--r--_wchar.h12
-rw-r--r--_wctype.d1
-rw-r--r--_wctype.h3
6 files changed, 72 insertions, 0 deletions
diff --git a/_stdio.d b/_stdio.d
new file mode 100644
index 0000000..b6b7396
--- /dev/null
+++ b/_stdio.d
@@ -0,0 +1,13 @@
+NULL
+_IOFBF
+_IOLBF
+_IONBF
+BUFSIZ
+EOF
+FILENAME_MAX
+FOPEN_MAX
+L_tmpnam
+SEEK_CUR
+SEEK_END
+SEEK_SET
+TMP_MAX
diff --git a/_stdio.h b/_stdio.h
new file mode 100644
index 0000000..bc96470
--- /dev/null
+++ b/_stdio.h
@@ -0,0 +1,39 @@
+#ifndef NULL
+#error NULL not defined
+#endif
+#ifndef _IOFBF
+#error _IOFBF not defined
+#endif
+#ifndef _IOLBF
+#error _IOLBF not defined
+#endif
+#ifndef _IONBF
+#error _IONBF not defined
+#endif
+#ifndef BUFSIZ
+#error BUFSIZ not defined
+#endif
+#ifndef EOF
+#error EOF not defined
+#endif
+#ifndef FILENAME_MAX
+#error FILENAME_MAX not defined
+#endif
+#ifndef FOPEN_MAX
+#error FOPEN_MAX not defined
+#endif
+#ifndef L_tmpnam
+#error L_tmpnam not defined
+#endif
+#ifndef SEEK_CUR
+#error SEEK_CUR not defined
+#endif
+#ifndef SEEK_END
+#error SEEK_END not defined
+#endif
+#ifndef SEEK_SET
+#error SEEK_SET not defined
+#endif
+#ifndef TMP_MAX
+#error TMP_MAX not defined
+#endif
diff --git a/_wchar.d b/_wchar.d
new file mode 100644
index 0000000..0c79f3a
--- /dev/null
+++ b/_wchar.d
@@ -0,0 +1,4 @@
+NULL
+WCHAR_MAX
+WCHAR_MIN
+WEOF
diff --git a/_wchar.h b/_wchar.h
new file mode 100644
index 0000000..1ea3fce
--- /dev/null
+++ b/_wchar.h
@@ -0,0 +1,12 @@
+#ifndef NULL
+#error NULL not defined
+#endif
+#ifndef WCHAR_MAX
+#error WCHAR_MAX not defined
+#endif
+#ifndef WCHAR_MIN
+#error WCHAR_MIN not defined
+#endif
+#ifndef WEOF
+#error WEOF not defined
+#endif
diff --git a/_wctype.d b/_wctype.d
new file mode 100644
index 0000000..8751e5a
--- /dev/null
+++ b/_wctype.d
@@ -0,0 +1 @@
+WEOF
diff --git a/_wctype.h b/_wctype.h
new file mode 100644
index 0000000..5709c5d
--- /dev/null
+++ b/_wctype.h
@@ -0,0 +1,3 @@
+#ifndef WEOF
+#error WEOF not defined
+#endif