Move types.h out of 3ds section.

This commit is contained in:
Steveice10
2015-01-23 22:46:15 -08:00
parent 89f3571c75
commit 87d0f28555
7 changed files with 6 additions and 8 deletions

13
source/types.h Normal file
View File

@@ -0,0 +1,13 @@
#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