diff options
author | Shawn O. Pearce <spearce@spearce.org> | 2007-03-06 20:44:30 -0500 |
---|---|---|
committer | Junio C Hamano <junkio@cox.net> | 2007-03-07 11:06:25 -0800 |
commit | c4001d92be61766d3494489b15590ca0147ee19d (patch) | |
tree | 7c78fe4599bf00354ca36299d11b2a1e4e9324bb /git-compat-util.h | |
parent | 7cadf491c6d7a29e345e1608c23b0d98cee5e848 (diff) | |
download | git-c4001d92be61766d3494489b15590ca0147ee19d.tar.gz |
Use off_t when we really mean a file offset.
Not all platforms have declared 'unsigned long' to be a 64 bit value,
but we want to support a 64 bit packfile (or close enough anyway)
in the near future as some projects are getting large enough that
their packed size exceeds 4 GiB.
By using off_t, the POSIX type that is declared to mean an offset
within a file, we support whatever maximum file size the underlying
operating system will handle. For most modern systems this is up
around 2^60 or higher.
Signed-off-by: Shawn O. Pearce <spearce@spearce.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
Diffstat (limited to 'git-compat-util.h')
-rw-r--r-- | git-compat-util.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/git-compat-util.h b/git-compat-util.h index 56212b2f11..33b68e463c 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -70,6 +70,10 @@ #define PATH_MAX 4096 #endif +#ifndef PRIuMAX +#define PRIuMAX "llu" +#endif + #ifdef __GNUC__ #define NORETURN __attribute__((__noreturn__)) #else |