summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Bendersky <eliben@users.noreply.github.com>2014-09-09 05:21:10 -0700
committerEli Bendersky <eliben@users.noreply.github.com>2014-09-09 05:21:10 -0700
commit5153976f02e2cd616b5c6f616e2670059430f530 (patch)
tree1d63e6020abda2a15c0c17cb018b0bb70cff28e4
parent5a05d9301ded85b871f658286d0d640ea9e89af2 (diff)
parent58ac51fa5bc8a60e3abede83f37f15166edd7773 (diff)
downloadpycparser-5153976f02e2cd616b5c6f616e2670059430f530.tar.gz
Merge pull request #53 from akiradeveloper/feature/add-typedefs-v2
Add more fake typedefs
-rw-r--r--utils/fake_libc_include/_fake_typedefs.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/utils/fake_libc_include/_fake_typedefs.h b/utils/fake_libc_include/_fake_typedefs.h
index a086cf1..3d8bfbd 100644
--- a/utils/fake_libc_include/_fake_typedefs.h
+++ b/utils/fake_libc_include/_fake_typedefs.h
@@ -12,6 +12,8 @@ typedef int __int_least16_t;
typedef int __uint_least16_t;
typedef int __int32_t;
typedef int __uint32_t;
+typedef int __int64_t;
+typedef int __uint64_t;
typedef int __int_least32_t;
typedef int __uint_least32_t;
typedef int _LOCK_T;
@@ -71,6 +73,7 @@ typedef int div_t;
typedef int ldiv_t;
typedef int lldiv_t;
typedef int sigset_t;
+typedef int __sigset_t;
typedef int _sig_func_ptr;
typedef int sig_atomic_t;
typedef int __tzrule_type;
@@ -91,6 +94,8 @@ typedef int pthread_spinlock_t;
typedef int pthread_barrier_t;
typedef int pthread_barrierattr_t;
typedef int jmp_buf;
+typedef int sigjmp_buf;
+typedef int stack_t;
/* C99 exact-width integer types */
typedef int int8_t;