comparison src/daemon.h @ 44:9e9f09cf411c

Add fixes for Solaris from sm-archive.
author Carl Byington <carl@five-ten-sg.com>
date Sat, 22 Mar 2008 10:58:24 -0700
parents
children
comparison
equal deleted inserted replaced
43:f7e118192ee6 44:9e9f09cf411c
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