6#ifndef ZEPHYR_INCLUDE_POSIX_SYSLOG_H_
7#define ZEPHYR_INCLUDE_POSIX_SYSLOG_H_
49#define LOG_MASK(mask) ((mask) & BIT_MASK(LOG_DEBUG + 1))
56void openlog(
const char *ident,
int logopt,
int facility);
58void syslog(
int priority,
const char *message, ...);
59void vsyslog(
int priority,
const char *format, va_list ap);
void openlog(const char *ident, int logopt, int facility)
void syslog(int priority, const char *message,...)
void vsyslog(int priority, const char *format, va_list ap)
int setlogmask(int maskpri)