mirror of
https://github.com/ckolivas/lrzip.git
synced 2025-12-06 07:12:00 +01:00
Use int64_t for i64
This commit is contained in:
parent
e3598a7b96
commit
5c5a8c6cc5
|
|
@ -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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Reference in a new issue