1/*
2 * Copyright 2020, Data61, CSIRO (ABN 41 687 119 230)
3 *
4 * SPDX-License-Identifier: BSD-2-Clause
5 */
6
7#pragma once
8
9#include <sel4/sel4_arch/simple_types.h>
10
11typedef signed char seL4_Int8;
12typedef signed short seL4_Int16;
13typedef signed int seL4_Int32;
14
15typedef unsigned char seL4_Uint8;
16typedef unsigned short seL4_Uint16;
17typedef unsigned int seL4_Uint32;
18
19