From 607bb3ff885727a099b39e16abd86f17ae502306 Mon Sep 17 00:00:00 2001 From: Johannes Sixt Date: Wed, 9 Jul 2008 22:38:14 +0200 Subject: [PATCH] Provide fallback definitions of PRIu32 and PRIx32 Since 6e1c23442 we make use of these C99 constructs, but this commit did not provide fallbacks for non-C99 systems. Signed-off-by: Johannes Sixt Signed-off-by: Junio C Hamano --- git-compat-util.h | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/git-compat-util.h b/git-compat-util.h index 545df59242..8c7e114733 100644 --- a/git-compat-util.h +++ b/git-compat-util.h @@ -110,6 +110,14 @@ #define PRIuMAX "llu" #endif +#ifndef PRIu32 +#define PRIu32 "u" +#endif + +#ifndef PRIx32 +#define PRIx32 "x" +#endif + #ifndef PATH_SEP #define PATH_SEP ':' #endif -- 2.11.4.GIT