blob: 5727e62a871cf6b5bf81108d1a001bba77b0e683 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
#ifndef ORYX_TYPES_H
#define ORYX_TYPES_H
#include <stdint.h>
typedef uint32_t idx_t;
typedef uint32_t rune;
typedef unsigned char uchar;
#define RUNE_C(x) UINT32_C(x)
#endif /* !ORYX_TYPES_H */
|