Skip to content
Snippets Groups Projects
Commit 85d3f30f 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 434b5ced
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
......@@ -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.
Finish editing this message first!
Please register or to comment