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
9typedef signed char seL4_Int8;
10typedef signed short seL4_Int16;
11typedef signed int seL4_Int32;
12
13typedef unsigned char seL4_Uint8;
14typedef unsigned short seL4_Uint16;
15typedef unsigned int seL4_Uint32;
16
17