comparison src/daemon.h @ 0:0aa1171aebd2 stable-1-0-0

initial version
author Carl Byington <carl@five-ten-sg.com>
date Wed, 15 May 2013 13:15:59 -0700
parents
children
comparison
equal deleted inserted replaced
-1:000000000000 0:0aa1171aebd2
1 /*
2 * File: daemon.h
3 * Author: shasn
4 *
5 * Created on 22 Декабрь 2006 г., 15:28
6 */
7
8 #ifndef _daemon_H
9 #define _daemon_H
10
11 #ifdef __cplusplus
12 extern "C" {
13 #endif
14
15 int daemon(int nochdir, int noclose);
16
17
18 #ifdef __cplusplus
19 }
20 #endif
21
22 #endif /* _daemon_H */
23