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