1 /* Creation date: 2008-04-05T03:57:11Z
2  * Authors: Don
3  */
4 
5 /* $Header: /repository/projects/libjsonevt/int_defs.h,v 1.2 2008-04-17 04:15:29 don Exp $ */
6 
7 #ifndef INT_DEFS_H
8 #define INT_DEFS_H
9 
10 #include <jsonevt_config.h>
11 
12 #ifdef JSONEVT_DEF_HAVE_INTTYPES_H
13 #include <inttypes.h>
14 #endif
15 #ifdef JSONEVT_DEF_HAVE_STDINT_H
16 #include <stdint.h>
17 #endif
18 
19 /*
20 #ifdef _MSC_VER
21 typedef unsigned __int8   uint8_t;
22 typedef unsigned __int32  uint32_t;
23 #else
24 
25 #if 0
26 #ifdef __FreeBSD__
27 #include <inttypes.h>
28 #else
29 #include <stdint.h>
30 #endif
31 #endif
32 
33 #endif
34 */
35 
36 #endif /* INT_DEFS_H */
37 
38