chiark / gitweb /
Initial commit of source as found on woking
[sympathy.git] / src / project.h
1 /* 
2  * project.h:
3  *
4  * Copyright (c) 2008 James McKenzie <james@fishsoup.dhs.org>,
5  * All rights reserved.
6  *
7  */
8
9 /* 
10  * $Id: project.h,v 1.11 2008/03/07 12:37:04 james Exp $
11  */
12
13 /* 
14  * $Log: project.h,v $
15  * Revision 1.11  2008/03/07 12:37:04  james
16  * *** empty log message ***
17  *
18  * Revision 1.10  2008/02/22 14:51:54  james
19  * *** empty log message ***
20  *
21  * Revision 1.9  2008/02/13 18:05:06  james
22  * *** empty log message ***
23  *
24  * Revision 1.8  2008/02/13 16:57:29  james
25  * *** empty log message ***
26  *
27  * Revision 1.7  2008/02/13 09:12:21  james
28  * *** empty log message ***
29  *
30  * Revision 1.6  2008/02/09 15:47:28  james
31  * *** empty log message ***
32  *
33  * Revision 1.5  2008/02/07 00:39:13  james
34  * *** empty log message ***
35  *
36  * Revision 1.4  2008/02/06 20:26:58  james
37  * *** empty log message ***
38  *
39  * Revision 1.3  2008/02/04 05:45:55  james
40  * ::
41  *
42  * Revision 1.2  2008/02/04 02:05:06  james
43  * *** empty log message ***
44  *
45  * Revision 1.1  2008/02/03 16:20:24  james
46  * *** empty log message ***
47  *
48  *
49  */
50
51 #ifndef __PROJECT_H__
52 #define __PROJECT_H__
53
54 #include "config.h"
55
56 #ifdef TM_IN_SYS_TIME
57 #include <sys/time.h>
58 #ifdef TIME_WITH_SYS_TIME
59 #include <time.h>
60 #endif
61 #else
62 #ifdef TIME_WITH_SYS_TIME
63 #include <sys/time.h>
64 #endif
65 #include <time.h>
66 #endif
67
68 #include <stdio.h>
69 #include <stdlib.h>
70
71 #ifdef HAVE_MALLOC_H
72 #include <malloc.h>
73 #endif
74
75 #ifdef HAVE_STRING_H
76 #include <string.h>
77 #endif
78
79 #ifdef HAVE_STRINGS_H
80 #include <strings.h>
81 #endif
82
83 #ifdef HAVE_UNISTD_H
84 #include <unistd.h>
85 #endif
86
87 #if defined(HAVE_STDINT_H)
88 #include <stdint.h>
89 #elif defined(HAVE_SYS_INT_TYPES_H)
90 #include <sys/int_types.h>
91 #endif
92
93 #include <termio.h>
94 #include <termios.h>
95
96 #include <signal.h>
97 #include <fcntl.h>
98 #include <errno.h>
99
100 #include <utmp.h>
101 #include <pty.h>
102
103 #include <stdarg.h>
104
105 #include "sympathy.h"
106
107 #endif /* __PROJECT_H__ */