// SPDX-License-Identifier: ISC // SPDX-FileCopyrightText: 2024 Matthew Wozniak #ifndef INTDEF_H #define INTDEF_H typedef unsigned char uchar; typedef unsigned short ushort; typedef unsigned int uint; typedef unsigned long ulong; typedef long long vlong; typedef unsigned long long uvlong; typedef ulong usize; typedef long isize; typedef uchar u8; typedef char i8; typedef ushort u16; typedef short i16; typedef uint u32; typedef int i32; typedef uvlong u64; typedef vlong i64; #endif // vi: sw=4 ts=4 noet tw=80 cc=80