aboutsummaryrefslogtreecommitdiff
path: root/src/utils/types.h
blob: a13b8efe0850e0f718489fe065d4bd84d06a7c45 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
#ifndef SYSC_PLAYGROUND_TYPES
#define SYSC_PLAYGROUND_TYPES

#include <cstdint>

using u32 = std::uint32_t;
using u64 = std::uint64_t;

using usize = std::size_t;

#endif