enchive/machine.h

18 lines
301 B
C
Raw Normal View History

2017-03-03 16:42:48 +01:00
#ifndef MACHINE_H
#define MACHINE_H
#include <stdint.h>
#define U8C(v) (UINT8_C(v))
#define U16C(v) (UINT16_C(v))
#define U32C(v) (UINT32_C(v))
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
2017-03-03 17:22:36 +01:00
typedef uint64_t u64;
2017-03-03 16:42:48 +01:00
typedef int32_t s32;
typedef int64_t limb;
#endif /* MACHINE_H */