mirror of
git://sourceware.org/git/glibc.git
synced 2024-12-15 04:20:28 +08: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);
|
||
|
}
|