]> Shamusworld >> Repos - stargem2/blobdiff - src/types.h
Converted to SDL 2, added fullscreen support (F12 to toggle).
[stargem2] / src / types.h
diff --git a/src/types.h b/src/types.h
deleted file mode 100755 (executable)
index faa8684..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// Fundamental variable types
-// by James L. Hammons
-//
-// Why these aren't a part of the C/C++ standard is beyond me. It seems to me that
-// basic types where you know the width should be a no-brainer.
-// I guess enough people were pissed off by it, so they included it finally. We
-// still alias them because we don't like typing _t after our type identifiers. ;-)
-//
-
-#ifndef __TYPES_H__
-#define __TYPES_H__
-
-#include <stdint.h>
-
-typedef uint8_t                uint8;
-typedef int8_t         int8;
-typedef uint16_t       uint16;
-typedef int16_t                int16;
-typedef uint32_t       uint32;
-typedef int32_t                int32;
-typedef uint64_t       uint64;
-typedef int64_t                int64;
-
-#endif // __TYPES_H__