Skip to content

Commit cdd0e19

Browse files
committed
lib: fix 64-bit integer typedefs for old msvc
1 parent 76dab7d commit cdd0e19

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lib/types.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ typedef unsigned short uint16_t;
3838
typedef short int16_t;
3939
typedef unsigned int uint32_t;
4040
typedef int int32_t;
41-
typedef unsigned long long uint64_t;
42-
typedef long long int64_t;
41+
typedef unsigned __int64 uint64_t;
42+
typedef __int64 int64_t;
4343
#else
4444
#include <stdint.h>
4545
#endif

0 commit comments

Comments
 (0)