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