ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/stdinc.h
Revision: 1.5
Committed: Sun Sep 16 18:54:42 2007 UTC (16 years, 8 months ago) by pippijn
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.4: +9 -4 lines
Log Message:
#defines to enum

File Contents

# User Rev Content
1 pippijn 1.5 /**
2     * stdinc.h: This is the header which includes all of the system stuff.
3     *
4     * Copyright © 2007 Pippijn van Steenhoven / The Ermyth Team
5     * Rights to this code are as documented in COPYING.
6     *
7     *
8     * Portions of this file were derived from sources bearing the following license:
9 pippijn 1.3 * Copyright © 2005 William Pitcock et al.
10 pippijn 1.2 * Rights to this code are documented in doc/pod/license.pod.
11 pippijn 1.1 *
12 pippijn 1.5 * $Id: stdinc.h,v 1.4 2007-09-09 20:05:51 pippijn Exp $
13 pippijn 1.1 */
14    
15     #ifndef STDINC_H
16     #define STDINC_H
17    
18     /* I N C L U D E S */
19 pippijn 1.3 #include <cstdarg>
20     #include <cstdio>
21     #include <cstdlib>
22     #include <cstring>
23     #include <csignal>
24     #include <ctime>
25     #include <cerrno>
26 pippijn 1.1 #include <setjmp.h>
27     #include <sys/stat.h>
28 pippijn 1.3 #include <cctype>
29 pippijn 1.1 #include <regex.h>
30    
31     /* socket stuff */
32     #include <netdb.h>
33     #include <netinet/in.h>
34     #include <unistd.h>
35     #include <grp.h>
36     #include <sys/wait.h>
37     #include <sys/resource.h>
38     #include <sys/socket.h>
39     #include <fcntl.h>
40     #include <arpa/inet.h>
41    
42     #include <sys/types.h>
43    
44     #include <libgen.h>
45     #include <dirent.h>
46    
47     #endif