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