Add test case plus make changes so test case runs
[satune.git] / src / common.h
index 9b7848583f0eebd17bb0c23303af3dfb2590c4fb..d9e6d4346dc525e00fa8d676080bc577cdbeab46 100644 (file)
@@ -17,6 +17,7 @@
 #include <stdio.h>
 #include "config.h"
 
+/*
 extern int model_out;
 extern int model_err;
 extern int switch_alloc;
@@ -27,6 +28,10 @@ extern int switch_alloc;
 
 #define model_print_err(fmt, ...) do { model_dprintf(model_err, fmt, ## __VA_ARGS__); } while (0)
 
+*/
+
+#define model_print printf
+
 #define NEXTPOW2(x) (1<<(sizeof(uint)*8-__builtin_clz(x-1)))
 
 #ifdef CONFIG_DEBUG