Details |
Last modification |
View Log
| RSS feed
Rev |
Author |
Line No. |
Line |
5 |
nishi |
1 |
/* $Id: syslog.c 5 2024-08-25 11:58:10Z nishi $ */
|
|
|
2 |
|
|
|
3 |
#include "../is_log.h"
|
|
|
4 |
|
|
|
5 |
#include <syslog.h>
|
|
|
6 |
#include <time.h>
|
|
|
7 |
|
|
|
8 |
void is_log(const char* msg) { syslog(LOG_INFO, "%s", msg); }
|