diff options
author | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:41:09 +0300 |
---|---|---|
committer | Arnold D. Robbins <arnold@skeeve.com> | 2010-07-16 12:41:09 +0300 |
commit | 8c042f99cc7465c86351d21331a129111b75345d (patch) | |
tree | 9656e653be0e42e5469cec77635c20356de152c2 /pc/include | |
parent | 8ceb5f934787eb7be5fb452fb39179df66119954 (diff) | |
download | egawk-8c042f99cc7465c86351d21331a129111b75345d.tar.gz egawk-8c042f99cc7465c86351d21331a129111b75345d.tar.bz2 egawk-8c042f99cc7465c86351d21331a129111b75345d.zip |
Move to gawk-3.0.0.
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
|