blob: 5c159c892012ff663cdd7c386b8c9a6be6639808 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
/*
* Copyright 2020 Birte Kristina Friesel
*
* SPDX-License-Identifier: BSD-2-Clause
*/
#ifndef ARCH_TYPES_H
#define ARCH_TYPES_H
typedef uint8_t native_uint_t;
typedef int8_t native_int_t;
#endif
|