Fix tabbing
[satune.git] / src / common.h
index a15f7df3e64f0840f561f4ab8bbc801ef1995347..52c0b5f7ebd85b9e0830bafee33367b18bc19123 100644 (file)
 #include "time.h"
 
 /*
-       extern int model_out;
-       extern int model_err;
-       extern int switch_alloc;
-       
      #define model_dprintf(fd, fmt, ...) do { switch_alloc = 1; dprintf(fd, fmt, ## __VA_ARGS__); switch_alloc = 0; } while (0)
      #define model_print(fmt, ...) do { printf(fmt, ## __VA_ARGS__); } while (0)
      #define model_println(fmt, ...) do { model_print(fmt, ## __VA_ARGS__); model_print("\n");} while(0)
      #define model_print(fmt, ...) do { model_dprintf(model_out, fmt, ## __VA_ARGS__); } while (0)
      #define model_print_err(fmt, ...) do { model_dprintf(model_err, fmt, ## __VA_ARGS__); } while (0)
+   extern int model_out;
+   extern int model_err;
+   extern int switch_alloc;
+
+ #define model_dprintf(fd, fmt, ...) do { switch_alloc = 1; dprintf(fd, fmt, ## __VA_ARGS__); switch_alloc = 0; } while (0)
+ #define model_print(fmt, ...) do { printf(fmt, ## __VA_ARGS__); } while (0)
+ #define model_println(fmt, ...) do { model_print(fmt, ## __VA_ARGS__); model_print("\n");} while(0)
+
+ #define model_print(fmt, ...) do { model_dprintf(model_out, fmt, ## __VA_ARGS__); } while (0)
+
+ #define model_print_err(fmt, ...) do { model_dprintf(model_err, fmt, ## __VA_ARGS__); } while (0)
  */
 
 #define model_print printf