Make stat.st_size a __int64 not a uint64_t
diff --git a/src/win32/win32-compat.h b/src/win32/win32-compat.h
index 8b4070d..d3a5b68 100644
--- a/src/win32/win32-compat.h
+++ b/src/win32/win32-compat.h
@@ -28,7 +28,7 @@ struct p_stat {
short st_uid;
short st_gid;
_dev_t st_rdev;
- uint64_t st_size;
+ __int64 st_size;
struct timespec st_atim;
struct timespec st_mtim;
struct timespec st_ctim;