Exemplo n.º 1
0
void
attribute_compat_text_section
__nldbl___vsyslog_chk (int pri, int flag, const char *fmt, va_list ap)
{
  set_no_long_double ();
  __vsyslog_chk (pri, flag, fmt, ap);
  clear_no_long_double ();
}
Exemplo n.º 2
0
void
__syslog_chk(int pri, int flag, const char *fmt, ...)
{
    va_list ap;

    va_start(ap, fmt);
    __vsyslog_chk(pri, flag, fmt, ap);
    va_end(ap);
}
Exemplo n.º 3
0
void
__vsyslog(int pri, const char *fmt, va_list ap)
{
    __vsyslog_chk (pri, -1, fmt, ap);
}