Skip to content
Snippets Groups Projects
Commit e819f14d authored by rswindell's avatar rswindell
Browse files

Borland builds also need ssize_t typedef'd. Watcom can come along for the ride.

parent 835ffe02
No related branches found
No related tags found
No related merge requests found
...@@ -172,10 +172,8 @@ typedef ulong uint32_t; ...@@ -172,10 +172,8 @@ typedef ulong uint32_t;
#endif #endif
#if !defined(__MSDOS__) #if !defined(__MSDOS__)
#if defined(_MSC_VER) // when and where will Microsoft typedef ssize_t (correctly) in the future?
typedef SSIZE_T ssize_t;
#endif
#if defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__) #if defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__)
typedef SSIZE_T ssize_t;
typedef signed __int64 int64_t; typedef signed __int64 int64_t;
typedef unsigned __int64 uint64_t; typedef unsigned __int64 uint64_t;
#define INTTYPES_H_64BIT_PREFIX "I64" #define INTTYPES_H_64BIT_PREFIX "I64"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment