Added tests for switch statement and the z80 loop induction problem
[fw/sdcc] / support / regression / fwk / include / testfwk.h
index 91f1503905f53293ed2a426d8ed84e75536166e8..4a178514caa950c82ef3959dbcf6be4bb2d28df2 100644 (file)
@@ -4,7 +4,7 @@
 extern int __numTests;
 
 void __fail(const char *szMsg, const char *szCond, const char *szFile, int line);
-void __printf(const char *szFormat, ...);
+void __printf(const char *szFormat, ...) REENTRANT;
 
 #define ASSERT(_a)     (__numTests++, (_a) ? (void)0 : __fail("Assertion failed", #_a, __FILE__, __LINE__))
 #define LOG(_a)                __printf _a