blob: bf205418df629aa50210dcc8b8e5b81a9acdf5bc (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef _SYSTEM_H
#define _SYSTEM_H
#ifdef __cpluscplus
extern "C"
{
#endif
#include "public.h"
int run_daemon(void);
#ifdef __cpluscplus
}
#endif
#endif
|