1 #include "nldbl-compat.h"
2 
3 void
4 attribute_hidden
__syslog_chk(int pri,int flag,const char * fmt,...)5 __syslog_chk (int pri, int flag, const char *fmt, ...)
6 {
7   va_list ap;
8 
9   va_start (ap, fmt);
10   __nldbl___vsyslog_chk (pri, flag, fmt, ap);
11   va_end(ap);
12 }
13