add intptr_t, uintptr_t, off_t type definition

This commit is contained in:
NAKAMURA Gou
2013-07-10 12:43:13 +09:00
parent 99a228930f
commit 63d97642d5

View File

@@ -11,8 +11,11 @@ typedef int int32_t;
typedef long long int64_t;
typedef long long ptrdiff_t;
typedef int64_t intptr_t;
typedef uint64_t uintptr_t;
typedef unsigned long long size_t;
typedef long long ssize_t;
typedef int64_t off_t;
#define NULL ((void *)0)