X-Git-Url: http://shamusworld.gotdns.org/cgi-bin/gitweb.cgi?a=blobdiff_plain;f=src%2Ftypes.h;fp=src%2Ftypes.h;h=0000000000000000000000000000000000000000;hb=2fe4f4d3720583b59e0412d2a0cb72109db78573;hp=51bcbcd26179e8320ebf7e15cd3f51c0bee3a8a5;hpb=757714edd1100cfbe4dd5c46e4eff480ee25dd3d;p=thunder diff --git a/src/types.h b/src/types.h deleted file mode 100644 index 51bcbcd..0000000 --- a/src/types.h +++ /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 - -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__