mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-24 22:10:13 +00:00
12 lines
177 B
C
12 lines
177 B
C
#include "nldbl-compat.h"
|
|||
|
|||
void
|
|||
attribute_hidden
|
|||
syslog (int pri, const char *fmt, ...)
|
|||
{
|
|||
va_list ap;
|
|||
va_start (ap, fmt);
|
|||
__nldbl_vsyslog (pri, fmt, ap);
|
|||
va_end (ap);
|
|||
}
|