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