summaryrefslogtreecommitdiffstats
path: root/debian/rules.d/scripts/mod/types.h
blob: bba382183b1aedde7a7bd49b1401c71dc5593796 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/* Minimal definitions for mod_devicetable.h and devicetable-offsets.c */
typedef unsigned char __u8;
typedef unsigned short __u16;
typedef unsigned int __u32;
typedef unsigned long long __u64;
typedef struct {
        __u8 b[16];
} guid_t;
typedef guid_t uuid_le;
typedef unsigned char uuid_t[16];
#define UUID_STRING_LEN 36
#define offsetof(a,b) __builtin_offsetof(a,b)