diff options
author | marha <marha@users.sourceforge.net> | 2013-12-21 14:53:11 +0100 |
---|---|---|
committer | marha <marha@users.sourceforge.net> | 2013-12-21 14:53:11 +0100 |
commit | 90077a910e62ec55bc1e5a98f5946754c9c5f8bd (patch) | |
tree | a480babd4a7c61d52edc2cc555b5d20eab69f737 /include | |
parent | 52cd3051ba15ddda117f8d8cae1979cd3c86f5b6 (diff) | |
download | vcxsrv-90077a910e62ec55bc1e5a98f5946754c9c5f8bd.tar.gz vcxsrv-90077a910e62ec55bc1e5a98f5946754c9c5f8bd.tar.bz2 vcxsrv-90077a910e62ec55bc1e5a98f5946754c9c5f8bd.zip |
Solved 64-bit run-time problems
Diffstat (limited to 'include')
-rw-r--r-- | include/stdint.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/stdint.h b/include/stdint.h index 4836190c5..87010ca5c 100644 --- a/include/stdint.h +++ b/include/stdint.h @@ -243,6 +243,6 @@ typedef uint64_t uintmax_t; #endif // __STDC_CONSTANT_MACROS ]
-typedef int ssize_t;
+typedef intptr_t ssize_t;
#endif // _MSC_STDINT_H_ ]
|