bzr branch
http://gegoxaren.bato24.eu/bzr/simpletypesystem/trunk
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 |
/* */ #ifndef __H_DEFS__ #define __H_DEFS__ /** @file * */ #ifdef __cplusplus #define BEGIN_DECLS extern "C" { #else #define BEGIN_DECLS #endif /*__cplusplus*/ #ifdef __cplusplus #define END_DECLS } #else #define END_DECLS #endif /* __cplusplus */ #ifndef hash_t #define hash_t long #endif #endif |