ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/ermyth/include/stdinc.h
Revision: 1.2
Committed: Sat Jul 21 01:29:07 2007 UTC (16 years, 10 months ago) by pippijn
Content type: text/plain
Branch: MAIN
Changes since 1.1: +2 -2 lines
Log Message:
- moved to new documentation system
- fixed small build error

File Contents

# User Rev Content
1 pippijn 1.1 /*
2     * Copyright © 2005 William Pitcock et al.
3 pippijn 1.2 * Rights to this code are documented in doc/pod/license.pod.
4 pippijn 1.1 *
5     * This is the header which includes all of the system stuff.
6     *
7 pippijn 1.2 * $Id: stdinc.h,v 1.1 2007-07-19 08:24:50 pippijn Exp $
8 pippijn 1.1 */
9    
10     #ifndef STDINC_H
11     #define STDINC_H
12    
13     /* I N C L U D E S */
14     #include <stdarg.h>
15     #include <stdio.h>
16     #include <stdlib.h>
17     #include <string.h>
18     #include <signal.h>
19     #include <time.h>
20     #include <errno.h>
21     #include <setjmp.h>
22     #include <sys/stat.h>
23     #include <ctype.h>
24     #include <regex.h>
25    
26     #ifdef HAVE_GETOPT_H
27     #include <getopt.h>
28     #endif
29    
30     #ifdef HAVE_LINK_H
31     #include <link.h>
32     #endif
33    
34     /* socket stuff */
35     #include <netdb.h>
36     #include <netinet/in.h>
37     #include <unistd.h>
38     #include <grp.h>
39     #include <sys/time.h>
40     #include <sys/wait.h>
41     #include <sys/resource.h>
42     #include <sys/socket.h>
43     #include <fcntl.h>
44     #include <arpa/inet.h>
45    
46     #include <sys/types.h>
47    
48     #include <libgen.h>
49     #include <dirent.h>
50    
51     #endif