From 601cdc347036202ed31299b324dfe282db86a864 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() --- include/debug.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/debug.h b/include/debug.h index fb07b94..9ee9cad 100644 --- a/include/debug.h +++ b/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