1 /* $OpenBSD: log.c,v 1.1 2016/09/02 16:54:29 mikeb Exp $ */ 2 3 /* 4 * Public Domain 2016 Mike Belopuhov 5 */ 6 7 #include <sys/types.h> 8 #include <stdlib.h> 9 10 void 11 log_debug(int cls, int level, const char *fmt, ...) 12 { 13 } 14 15 void 16 log_debug_buf(int cls, int level, const char *header, const u_int8_t *buf, 17 size_t sz) 18 { 19 } 20 21 void 22 log_print(const char *fmt, ...) 23 { 24 } 25 26 void 27 log_error(const char *fmt, ...) 28 { 29 } 30 31 void 32 log_errorx(const char *fmt, ...) 33 { 34 } 35 36 void 37 log_fatal(const char *fmt, ...) 38 { 39 exit(1); 40 } 41 42 void 43 log_fatalx(const char *fmt, ...) 44 { 45 exit(1); 46 } 47