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

# Content
1 /**
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 * Copyright © 2005 William Pitcock et al.
10 * Rights to this code are documented in doc/pod/license.pod.
11 *
12 * $Id: stdinc.h,v 1.4 2007-09-09 20:05:51 pippijn Exp $
13 */
14
15 #ifndef STDINC_H
16 #define STDINC_H
17
18 /* I N C L U D E S */
19 #include <cstdarg>
20 #include <cstdio>
21 #include <cstdlib>
22 #include <cstring>
23 #include <csignal>
24 #include <ctime>
25 #include <cerrno>
26 #include <setjmp.h>
27 #include <sys/stat.h>
28 #include <cctype>
29 #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