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