old-bannertool/source/types.h
Dorian Wouters 21ee45095b Fix header include guards names
Symbols starting with two underscores are reserved, as per the C
standard.
2016-01-27 16:49:48 +01:00

13 lines
No EOL
188 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