LibC: Implement vsyslog

This commit is contained in:
2026-03-23 19:13:38 +02:00
parent 5be9bc64a2
commit 14f1c1a358
2 changed files with 25 additions and 16 deletions

View File

@@ -5,6 +5,8 @@
#include <sys/cdefs.h>
#include <stdarg.h>
__BEGIN_DECLS
#define LOG_PID 0x01
@@ -47,6 +49,7 @@ void closelog(void);
void openlog(const char* ident, int logopt, int facility);
int setlogmask(int maskpri);
void syslog(int priority, const char* message, ...);
void vsyslog(int priority, const char* format, va_list ap);
__END_DECLS