aboutsummaryrefslogtreecommitdiffstats
path: root/tools/security/secpol_compat.h
blob: 7f497ba2fcd1178a79e40a3515d3393b76f616b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* secpol_compat.h
 *     'translates' data types necessary to
 *     include <xen/acm.h>
 */
#include <stdint.h>

typedef uint8_t  u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef int8_t   s8;
typedef int16_t  s16;
typedef int32_t  s32;
typedef int64_t  s64;