Commit e8ce8060 by Kai Luo Committed by Kai Luo

On AIX, `off64_t` is equivalent to `long long`.

See `/usr/include/sys/types.h` on AIX.
parent 22f38253
......@@ -104,6 +104,8 @@ typedef __int64 off64_t;
typedef __haiku_std_int64 off64_t;
#elif defined(__APPLE__)
typedef __int64_t off64_t;
#elif defined(_AIX)
typedef long long off64_t;
#else
typedef int64_t off64_t;
#endif
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment