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