blob: f86c0a3f68e8afdaa6fd1a5c72a38cbdbe8a86ff (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef __MICROBBS_LOGS_H
#define __MICROBBS_LOGS_H
#include <stdlib.h>
#include <stdio.h>
#include <syslog.h>
#define BBS_DEFAULT_SYSLOG "microbbs"
int bbs_log( const char* );
#endif
|