MCPcopy Create free account
hub / github.com/F-Stack/f-stack / xo_syslog

Function xo_syslog

tools/libxo/libxo/xo_syslog.c:703–711  ·  view source on GitHub ↗

* syslog - print message on log file; output is intended for syslogd(8). */

Source from the content-addressed store, hash-verified

701 * syslog - print message on log file; output is intended for syslogd(8).
702 */
703void
704xo_syslog (int pri, const char *name, const char *fmt, ...)
705{
706 va_list ap;
707
708 va_start(ap, fmt);
709 xo_vsyslog(pri, name, fmt, ap);
710 va_end(ap);
711}

Callers 2

mainFunction · 0.85
xo_vsyslogFunction · 0.85

Calls 1

xo_vsyslogFunction · 0.85

Tested by 1

mainFunction · 0.68