2 * netsniff-ng - the packet sniffing beast
3 * By Daniel Borkmann <daniel@netsniff-ng.org>
4 * Copyright 2009, 2010 Daniel Borkmann.
5 * Subject to the GPL, version 2.
19 static inline void die(void)
24 static inline void _die(void)
29 static inline void panic(char *format
, ...)
33 vfprintf(stderr
, format
, vl
);
38 static inline void syslog_panic(const char *format
, ...)
42 vsyslog(LOG_ERR
, format
, vl
);
47 static inline void syslog_maybe(int may
, int priority
, const char *format
, ...)
52 vsyslog(priority
, format
, vl
);
57 static inline void whine(char *format
, ...)
61 vfprintf(stderr
, format
, vl
);