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:
Chris Lattner 2004-06-04 20:06:33 +00:00
parent 5811862f23
commit 745feacfd6
2 changed files with 6 additions and 4 deletions

View File

@ -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)

View File

@ -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)