diff options
author | Johannes Sixt <j6t@kdbg.org> | 2013-09-19 09:17:07 +0200 |
---|---|---|
committer | Junio C Hamano <gitster@pobox.com> | 2013-09-19 11:03:38 -0700 |
commit | 1562f3be48da0b5303928ee267a0a028a0a63417 (patch) | |
tree | e726ed8c0b8329cce531645ec0e437c4323e022b /compat | |
parent | git-config: always treat --int as 64-bit internally (diff) | |
download | tgif-1562f3be48da0b5303928ee267a0a028a0a63417.tar.xz |
compat/mingw.h: define PRId64
Provide PRId64 alongside PRIuMAX.
Signed-off-by: Johannes Sixt <j6t@kdbg.org>
Signed-off-by: Junio C Hamano <gitster@pobox.com>
Diffstat (limited to 'compat')
-rw-r--r-- | compat/mingw.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/compat/mingw.h b/compat/mingw.h index bd0a88bc1d..9eb3b17ff0 100644 --- a/compat/mingw.h +++ b/compat/mingw.h @@ -322,6 +322,7 @@ static inline char *mingw_find_last_dir_sep(const char *path) #define find_last_dir_sep mingw_find_last_dir_sep #define PATH_SEP ';' #define PRIuMAX "I64u" +#define PRId64 "I64d" void mingw_open_html(const char *path); #define open_html mingw_open_html |