From aa0c2845cbc39fc18ec9b12056d84e341b980580 Mon Sep 17 00:00:00 2001 From: root Date: Fri, 13 Mar 2020 13:15:06 -0400 Subject: [PATCH] more temp fix for PRIx32, PRIu32 : lf_icehid , hf_young --- armsrc/util.h | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/armsrc/util.h b/armsrc/util.h index 052ae266c..4ae95a5d1 100644 --- a/armsrc/util.h +++ b/armsrc/util.h @@ -17,6 +17,12 @@ #ifndef PRIx64 #define PRIx64 "llx" #endif +#ifndef PRIx32 + #define PRIx32 "lx" +#endif +#ifndef PRIu32 + #define PRIu32 "lu" +#endif // Basic macros