]> git.tdb.fi Git - ext/openal.git/blob - common/albyte.h
Import OpenAL Soft 1.23.1 sources
[ext/openal.git] / common / albyte.h
1 #ifndef AL_BYTE_H
2 #define AL_BYTE_H
3
4 #include <cstddef>
5 #include <cstdint>
6 #include <limits>
7 #include <type_traits>
8
9 using uint = unsigned int;
10
11 namespace al {
12
13 using byte = unsigned char;
14
15 } // namespace al
16
17 #endif /* AL_BYTE_H */