diff options
Diffstat (limited to 'src/types.h')
-rw-r--r-- | src/types.h | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/src/types.h b/src/types.h new file mode 100644 index 0000000..ea245bf --- /dev/null +++ b/src/types.h @@ -0,0 +1,21 @@ +// Basic type definitions for X86 cpus. +// +// Copyright (C) 2008 Kevin O'Connor <kevin@koconnor.net> +// +// This file may be distributed under the terms of the GNU GPLv3 license. +#ifndef __TYPES_H +#define __TYPES_H + +typedef unsigned char u8; +typedef signed char s8; +typedef unsigned short u16; +typedef signed short s16; +typedef unsigned int u32; +typedef signed int s32; +typedef u32 size_t; + +#define VISIBLE __attribute__((externally_visible)) + +#define offsetof(TYPE, MEMBER) ((size_t) &((TYPE *)0)->MEMBER) + +#endif // types.h |