mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2024-12-28 04:33:05 +00:00
Add ssize_t for VC++
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@14018 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
5811862f23
commit
745feacfd6
@ -39,8 +39,9 @@
|
||||
// built-in data types.
|
||||
typedef __int64 int64_t;
|
||||
typedef unsigned __int64 uint64_t;
|
||||
typedef int int32_t;
|
||||
typedef unsigned uint32_t;
|
||||
typedef signed int int32_t;
|
||||
typedef unsigned int uint32_t;
|
||||
typedef signed int ssize_t;
|
||||
#endif
|
||||
|
||||
#if !defined(INT64_MAX)
|
||||
|
@ -39,8 +39,9 @@
|
||||
// built-in data types.
|
||||
typedef __int64 int64_t;
|
||||
typedef unsigned __int64 uint64_t;
|
||||
typedef int int32_t;
|
||||
typedef unsigned uint32_t;
|
||||
typedef signed int int32_t;
|
||||
typedef unsigned int uint32_t;
|
||||
typedef signed int ssize_t;
|
||||
#endif
|
||||
|
||||
#if !defined(INT64_MAX)
|
||||
|
Loading…
Reference in New Issue
Block a user