15 lines
234 B
C
15 lines
234 B
C
#ifndef COMMON_H
|
|
#define COMMON_H
|
|
|
|
#include <stdint.h>
|
|
#include <stddef.h>
|
|
|
|
typedef void V;
|
|
typedef intptr_t I;
|
|
typedef uintptr_t U;
|
|
typedef double F;
|
|
typedef size_t Z;
|
|
typedef uint8_t U8;
|
|
typedef uint32_t U32;
|
|
|
|
#endif
|