Skip to content

Commit

Permalink
lib: fix 64-bit integer typedefs for old msvc
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramen2X committed Dec 9, 2024
1 parent 76dab7d commit cdd0e19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/types.h
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ typedef unsigned short uint16_t;
typedef short int16_t;
typedef unsigned int uint32_t;
typedef int int32_t;
typedef unsigned long long uint64_t;
typedef long long int64_t;
typedef unsigned __int64 uint64_t;
typedef __int64 int64_t;
#else
#include <stdint.h>
#endif
Expand Down

0 comments on commit cdd0e19

Please sign in to comment.