Fixing a compilation issue, wherein two global vars, conf and chan, were defined...
[revinetd.git] / includes.h
blob58111e9063c48a4a827547ebefed974a29c0bd1f
1 /*
2 * getopt.h
4 * This file is a part of the revinetd project
6 * Revinetd is copyright (c) 2003-2008 by Steven M. Gill
7 * and distributed under the GPL.
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version 2
12 * of the License, or (at your option) any later version.
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
19 * You should have received a copy of the GNU General Public License
20 * along with this program; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307,
22 * USA.
24 * */
26 /* $Id: includes.h,v 1.7 2008/08/28 03:24:59 necrotaur Exp $ */
28 #ifndef __INCLUDES_H__
29 #define __INCLUDES_H__
31 #include <stdio.h>
32 #include <stdlib.h>
33 #include <ctype.h>
34 #include <unistd.h>
35 #include <fcntl.h>
36 #include <signal.h>
37 #include <sys/wait.h>
38 #include <sys/types.h>
39 #include <sys/socket.h>
40 #include <netinet/in.h>
41 #include <arpa/inet.h>
42 #include <netdb.h>
43 #include <unistd.h>
44 #include <signal.h>
45 #include <errno.h>
46 #include <sys/time.h>
47 #include <memory.h>
48 #include <string.h>
49 #include <time.h>
50 #include "getopt.h"
51 #include "config.h"
53 #endif