old-bannertool/source/types.h
2015-01-23 22:46:41 -08:00

13 lines
No EOL
196 B
C

#ifndef __TYPES_H__
#define __TYPES_H__
#include <stddef.h>
#include <stdint.h>
#include <stdbool.h>
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
#endif