xref: /freebsd/contrib/blocklist/port/vsyslog_r.c (revision 48e64ca13d4f36795ac718911b805e3e9a726f1b)
1 #ifdef HAVE_CONFIG_H
2 #include "config.h"
3 #endif
4 
5 #include <syslog.h>
6 #include <stdarg.h>
7 
8 void
vsyslog_r(int priority,struct syslog_data * sd __unused,const char * fmt,va_list ap)9 vsyslog_r(int priority, struct syslog_data *sd __unused, const char *fmt, va_list ap)
10 {
11 	vsyslog(priority, fmt, ap);
12 }
13 
14