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=e3ad811139308bfe8a818cf5e42e7553785fea82;hp=faa868486f0a15b3dc4f451d8522b0b6e8637796;hpb=0c6f353827a94eb52c21e677658000f98452b247;p=stargem2 diff --git a/src/types.h b/src/types.h deleted file mode 100755 index faa8684..0000000 --- a/src/types.h +++ /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 - -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__