]> Shamusworld >> Repos - thunder/blobdiff - src/types.h
Code cleanup.
[thunder] / src / types.h
diff --git a/src/types.h b/src/types.h
deleted file mode 100644 (file)
index 51bcbcd..0000000
+++ /dev/null
@@ -1,25 +0,0 @@
-//
-// TYPES.H
-//
-// by James L. Hammons
-// (C) 2009 Underground Software
-//
-// Now that C/C++ has stardard sizes, this is much more precise. We still do
-// this because we don't like typing _t on the back of our types. :-)
-//
-
-#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__