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