diff libui/ui/debug.h @ 226:dd7c8d4321a3

misc: miscellaneous cleanups
author David Demelier <markand@malikania.fr>
date Thu, 19 Nov 2020 10:17:04 +0100
parents 6992085d47fd
children
line wrap: on
line diff
--- a/libui/ui/debug.h	Wed Nov 18 19:52:14 2020 +0100
+++ b/libui/ui/debug.h	Thu Nov 19 10:17:04 2020 +0100
@@ -41,7 +41,6 @@
 #include <stdarg.h>
 
 #include <core/font.h>
-#include <core/plat.h>
 
 /**
  * Maximum content length per report.
@@ -86,7 +85,7 @@
  *       result is truncated.
  */
 void
-debugf(struct debug_report *report, const char *fmt, ...) PLAT_PRINTF(2, 3);
+debugf(struct debug_report *report, const char *fmt, ...);
 
 /**
  * Similar to \ref debugf with a va_list arguments pointer.
@@ -97,6 +96,6 @@
  * \param ap the argument list
  */
 void
-vdebugf(struct debug_report *report, const char *fmt, va_list ap) PLAT_PRINTF(2, 0);
+vdebugf(struct debug_report *report, const char *fmt, va_list ap);
 
 #endif /* !MOLKO_DEBUG_H */