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