Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
/* $Id: log.c 2 2024-09-05 18:31:51Z nishi $ */
#include "mk_log.h"
#include <syslog.h>
void mk_log(const char* log){
syslog(LOG_INFO, log);
}