From c38238f1b66ea41b6ba62ee7ae84da93d898f8e1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20Fr=C3=B6schle?= Date: Tue, 25 Oct 2016 15:35:46 +0000 Subject: [PATCH] add inf() --- BaS_gcc/include/debug.h | 1 + 1 file changed, 1 insertion(+) diff --git a/BaS_gcc/include/debug.h b/BaS_gcc/include/debug.h index fb07b94..9ee9cad 100644 --- a/BaS_gcc/include/debug.h +++ b/BaS_gcc/include/debug.h @@ -7,6 +7,7 @@ #define dbg(format, arg...) do {;} while (0) #endif /* DEBUG */ #define err(format, arg...) do { xprintf("ERROR (%s()): " format, __FUNCTION__, ##arg); } while(0) +#define inf(format, arg...) do { xprintf("" format, ##arg); } while(0) #endif // DEBUG_H