chiark / gitweb /
*** empty log message ***
[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$
11  */
12
13 /*
14  * $Log$
15  * Revision 1.10  2008/02/22 14:51:54  james
16  * *** empty log message ***
17  *
18  * Revision 1.9  2008/02/13 18:05:06  james
19  * *** empty log message ***
20  *
21  * Revision 1.8  2008/02/13 16:57:29  james
22  * *** empty log message ***
23  *
24  * Revision 1.7  2008/02/13 09:12:21  james
25  * *** empty log message ***
26  *
27  * Revision 1.6  2008/02/09 15:47:28  james
28  * *** empty log message ***
29  *
30  * Revision 1.5  2008/02/07 00:39:13  james
31  * *** empty log message ***
32  *
33  * Revision 1.4  2008/02/06 20:26:58  james
34  * *** empty log message ***
35  *
36  * Revision 1.3  2008/02/04 05:45:55  james
37  * ::
38  *
39  * Revision 1.2  2008/02/04 02:05:06  james
40  * *** empty log message ***
41  *
42  * Revision 1.1  2008/02/03 16:20:24  james
43  * *** empty log message ***
44  *
45  *
46  */
47
48 #ifndef __PROJECT_H__
49 #define __PROJECT_H__
50
51 #include "config.h"
52
53 #ifdef TM_IN_SYS_TIME
54 #include <sys/time.h>
55 #ifdef TIME_WITH_SYS_TIME
56 #include <time.h>
57 #endif
58 #else
59 #ifdef TIME_WITH_SYS_TIME
60 #include <sys/time.h>
61 #endif
62 #include <time.h>
63 #endif
64
65 #include <stdio.h>
66 #include <stdlib.h>
67
68 #ifdef HAVE_MALLOC_H
69 #include <malloc.h>
70 #endif
71
72 #ifdef HAVE_STRING_H
73 #include <string.h>
74 #endif
75
76 #ifdef HAVE_STRINGS_H
77 #include <strings.h>
78 #endif
79
80 #ifdef HAVE_UNISTD_H
81 #include <unistd.h>
82 #endif
83
84 #if defined(HAVE_STDINT_H)
85 #include <stdint.h>
86 #elif defined(HAVE_SYS_INT_TYPES_H)
87 #include <sys/int_types.h>
88 #endif
89
90 #include <termio.h>
91 #include <termios.h>
92
93 #include <signal.h>
94 #include <fcntl.h>
95 #include <errno.h>
96
97 #include <utmp.h>
98 #include <pty.h>
99
100 #include <stdarg.h>
101
102 #include "sympathy.h"
103
104 #endif /* __PROJECT_H__ */