diff options
Diffstat (limited to 'pc/include')
-rw-r--r-- | pc/include/fcntl.h | 3 | ||||
-rw-r--r-- | pc/include/stdio.h | 3 | ||||
-rw-r--r-- | pc/include/stdlib.h | 3 | ||||
-rw-r--r-- | pc/include/string.h | 3 | ||||
-rw-r--r-- | pc/include/sys/stat.h | 3 | ||||
-rw-r--r-- | pc/include/sys/types.h | 3 | ||||
-rw-r--r-- | pc/include/time.h | 3 |
7 files changed, 21 insertions, 0 deletions
diff --git a/pc/include/fcntl.h b/pc/include/fcntl.h new file mode 100644 index 00000000..5ebc7a6b --- /dev/null +++ b/pc/include/fcntl.h @@ -0,0 +1,3 @@ +#undef __STDC__
+#include <fcntl.h>
+#define __STDC__ 1
diff --git a/pc/include/stdio.h b/pc/include/stdio.h new file mode 100644 index 00000000..25fb7c97 --- /dev/null +++ b/pc/include/stdio.h @@ -0,0 +1,3 @@ +#undef __STDC__
+#include <stdio.h>
+#define __STDC__ 1
diff --git a/pc/include/stdlib.h b/pc/include/stdlib.h new file mode 100644 index 00000000..0789b242 --- /dev/null +++ b/pc/include/stdlib.h @@ -0,0 +1,3 @@ +#undef __STDC__
+#include <stdlib.h>
+#define __STDC__ 1
diff --git a/pc/include/string.h b/pc/include/string.h new file mode 100644 index 00000000..48e942fa --- /dev/null +++ b/pc/include/string.h @@ -0,0 +1,3 @@ +#undef __STDC__
+#include <string.h>
+#define __STDC__ 1
diff --git a/pc/include/sys/stat.h b/pc/include/sys/stat.h new file mode 100644 index 00000000..904d056e --- /dev/null +++ b/pc/include/sys/stat.h @@ -0,0 +1,3 @@ +#undef __STDC__
+#include <sys/stat.h>
+#define __STDC__ 1
diff --git a/pc/include/sys/types.h b/pc/include/sys/types.h new file mode 100644 index 00000000..b942dda8 --- /dev/null +++ b/pc/include/sys/types.h @@ -0,0 +1,3 @@ +#undef __STDC__
+#include <sys/types.h>
+#define __STDC__ 1
diff --git a/pc/include/time.h b/pc/include/time.h new file mode 100644 index 00000000..b4a9ea3f --- /dev/null +++ b/pc/include/time.h @@ -0,0 +1,3 @@ +#undef __STDC__
+#include <time.h>
+#define __STDC__ 1
|