Use int64_t for i64

This commit is contained in:
Con Kolivas 2015-03-10 20:05:51 +11:00
parent e3598a7b96
commit 5c5a8c6cc5
2 changed files with 2 additions and 2 deletions

View file

@ -449,7 +449,7 @@ void compress(Reader* in, Writer* out, int level);
#define unlikely(x) __builtin_expect(!!(x), 0)
#define __maybe_unused __attribute__((unused))
typedef long long int i64;
typedef int64_t i64;
struct bufRead: public libzpaq::Reader {
uchar *s_buf;

View file

@ -144,7 +144,7 @@ extern int errno;
# define ffsll __builtin_ffsll
#endif
typedef long long int i64;
typedef int64_t i64;
typedef uint32_t u32;
typedef struct rzip_control rzip_control;