1/*
2 * Copyright 2018, Data61
3 * Commonwealth Scientific and Industrial Research Organisation (CSIRO)
4 * ABN 41 687 119 230.
5 *
6 * This software may be distributed and modified according to the terms of
7 * the GNU General Public License version 2. Note that NO WARRANTY is provided.
8 * See "LICENSE_GPLv2.txt" for details.
9 *
10 * @TAG(DATA61_GPL)
11 */
12
13/*
14 *
15 * Copyright 2016, 2017 Hesham Almatary, Data61/CSIRO <hesham.almatary@data61.csiro.au>
16 */
17
18#ifndef __LIBSEL4_ARCH_SIMPLE_TYPES_H_
19#define __LIBSEL4_ARCH_SIMPLE_TYPES_H_
20
21typedef signed char seL4_Int8;
22typedef signed short seL4_Int16;
23typedef signed int seL4_Int32;
24
25typedef unsigned char seL4_Uint8;
26typedef unsigned short seL4_Uint16;
27typedef unsigned int seL4_Uint32;
28
29#endif
30