summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Bendersky <eliben@gmail.com>2016-02-26 05:39:50 -0800
committerEli Bendersky <eliben@gmail.com>2016-02-26 05:39:50 -0800
commitfee8df8660aecdfdab61bef036742f42cfc5fc86 (patch)
treed4ce929b015d1cbed016938cb83f01eda617ad44
parentad938363e4f0f2bcb8349e0ad77be0f8d4fce56c (diff)
parente8afe74678382b948790a8524ef3cc616f4b13db (diff)
downloadpycparser-fee8df8660aecdfdab61bef036742f42cfc5fc86.tar.gz
Merge branch 'master' of github.com:eliben/pycparser
-rw-r--r--utils/fake_libc_include/_fake_typedefs.h8
-rw-r--r--utils/fake_libc_include/asm-generic/int-ll64.h2
-rw-r--r--utils/fake_libc_include/linux/socket.h2
3 files changed, 12 insertions, 0 deletions
diff --git a/utils/fake_libc_include/_fake_typedefs.h b/utils/fake_libc_include/_fake_typedefs.h
index 8c8d463..1455321 100644
--- a/utils/fake_libc_include/_fake_typedefs.h
+++ b/utils/fake_libc_include/_fake_typedefs.h
@@ -16,6 +16,14 @@ typedef int __int64_t;
typedef int __uint64_t;
typedef int __int_least32_t;
typedef int __uint_least32_t;
+typedef int __s8;
+typedef int __u8;
+typedef int __s16;
+typedef int __u16;
+typedef int __s32;
+typedef int __u32;
+typedef int __s64;
+typedef int __u64;
typedef int _LOCK_T;
typedef int _LOCK_RECURSIVE_T;
typedef int _off_t;
diff --git a/utils/fake_libc_include/asm-generic/int-ll64.h b/utils/fake_libc_include/asm-generic/int-ll64.h
new file mode 100644
index 0000000..f952c1d
--- /dev/null
+++ b/utils/fake_libc_include/asm-generic/int-ll64.h
@@ -0,0 +1,2 @@
+#include "_fake_defines.h"
+#include "_fake_typedefs.h"
diff --git a/utils/fake_libc_include/linux/socket.h b/utils/fake_libc_include/linux/socket.h
new file mode 100644
index 0000000..f952c1d
--- /dev/null
+++ b/utils/fake_libc_include/linux/socket.h
@@ -0,0 +1,2 @@
+#include "_fake_defines.h"
+#include "_fake_typedefs.h"