Implement syslog functionality

This commit is contained in:
Bendeguz Pisch
2025-07-18 04:49:51 +00:00
committed by Jeremy Soller
parent f6528d27dd
commit 4fc80ea7b0
8 changed files with 251 additions and 1 deletions
+6
View File
@@ -0,0 +1,6 @@
#ifndef _BITS_SYSLOG_H
#define _BITS_SYSLOG_H
#define LOG_MASK(pri) (1<<(pri))
#endif