/simpletypesystem/trunk

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
5.2.7 by Gustav Hartvigsson
* Switched licence to a more permisive one.
1
/*
2
*/
3
4
#ifndef __H_DEFS__
5
#define __H_DEFS__
6
7
/** @file
8
 * 
9
 */
10
11
#ifdef __cplusplus
12
#define BEGIN_DECLS extern "C" {
13
#else
14
#define BEGIN_DECLS
15
#endif /*__cplusplus*/
16
17
18
#ifdef __cplusplus
19
#define END_DECLS }
20
#else
21
#define END_DECLS
22
#endif /* __cplusplus */
23
24
#ifndef hash_t
25
#define hash_t long
26
#endif
27
28
#endif