3 * By Daniel Borkmann <daniel@netyack.org>
4 * Copyright 2009, 2010 Daniel Borkmann.
5 * Subject to the GPL, version 2.
17 static inline void error_and_die(int status
, char *msg
, ...)
21 vfprintf(stderr
, msg
, vl
);
26 static inline void die(void)
31 static inline void panic(char *msg
, ...)
35 vfprintf(stderr
, msg
, vl
);
40 static inline void whine(char *msg
, ...)
44 vfprintf(stderr
, msg
, vl
);
48 static inline void info(char *msg
, ...)
52 vfprintf(stdout
, msg
, vl
);
57 static inline void debug(char *msg
, ...)
61 vfprintf(stderr
, msg
, vl
);
67 static inline void debug(char *msg
, ...)