summaryrefslogtreecommitdiff
path: root/firmware/export/debug.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/export/debug.h')
-rw-r--r--firmware/export/debug.h7
1 files changed, 5 insertions, 2 deletions
diff --git a/firmware/export/debug.h b/firmware/export/debug.h
index ce556d6418..ef56ea6092 100644
--- a/firmware/export/debug.h
+++ b/firmware/export/debug.h
@@ -19,9 +19,12 @@
19#ifndef DEBUG_H 19#ifndef DEBUG_H
20#define DEBUG_H 20#define DEBUG_H
21 21
22#include <_ansi.h>
23
22extern void debug_init(void); 24extern void debug_init(void);
23extern void debugf(const char* fmt,...); 25extern void debugf(const char* fmt,...) ATTRIBUTE_PRINTF(1, 2);
24extern void ldebugf(const char* file, int line, const char *fmt, ...); 26extern void ldebugf(const char* file, int line, const char *fmt, ...)
27 ATTRIBUTE_PRINTF(3, 4);
25 28
26#ifdef __GNUC__ 29#ifdef __GNUC__
27 30