debug.h 266 B

12345678
  1. /* For debugging general purposes */
  2. extern int verbose;
  3. extern int dump_trace;
  4. int eprintf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
  5. int dump_printf(const char *fmt, ...) __attribute__((format(printf, 1, 2)));
  6. void trace_event(event_t *event);