Skip to content
Snippets Groups Projects
Commit 5bd32eb4 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Even when MSVC has inttypes.h, it still doesn't have ssize_t

parent e5707174
Branches
Tags
No related merge requests found
......@@ -268,6 +268,10 @@ typedef intmax_t intptr_t;
#define SCNXMAX PRIX64
#define SCNoMAX PRIo64
#else
#if (!defined(_MSDOS)) && (defined(_MSC_VER) || defined(__WATCOMC__) || defined(__BORLANDC__))
typedef SSIZE_T ssize_t;
#endif
#endif
/* Legacy 32-bit time_t */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment