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.1  2008/02/03 16:20:24  james
16  * *** empty log message ***
17  *
18  *
19  */
20
21 #ifndef __PROJECT_H__
22 #define __PROJECT_H__
23
24 #include "config.h"
25
26 #ifdef TM_IN_SYS_TIME
27 #include <sys/time.h>
28 #ifdef TIME_WITH_SYS_TIME
29 #include <time.h>
30 #endif
31 #else
32 #ifdef TIME_WITH_SYS_TIME
33 #include <sys/time.h>
34 #endif
35 #include <time.h>
36 #endif
37
38 #include <stdio.h>
39 #include <stdlib.h>
40
41 #ifdef HAVE_MALLOC_H
42 #include <malloc.h>
43 #endif
44
45 #ifdef HAVE_STRING_H
46 #include <string.h>
47 #endif
48
49 #ifdef HAVE_STRINGS_H
50 #include <strings.h>
51 #endif
52
53 #ifdef HAVE_UNISTD_H
54 #include <unistd.h>
55 #endif
56
57 #if defined(HAVE_STDINT_H)
58 #include <stdint.h>
59 #elif defined(HAVE_SYS_INT_TYPES_H)
60 #include <sys/int_types.h>
61 #endif
62
63 #include "prototypes.h"
64
65 #endif /* __PROJECT_H__ */