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=0c01fa32c7e0629ae61992e0419f03724fc18487;hp=0fc13b5e9f768c68af4f83ca369a01ed3f60e50d;hpb=3ef71393f70213eb53db552605ae3c93f1303ee9;p=ttedit diff --git a/src/types.h b/src/types.h deleted file mode 100755 index 0fc13b5..0000000 --- a/src/types.h +++ /dev/null @@ -1,30 +0,0 @@ -// -// Basic types for platform independent code -// - -#ifndef __TYPES_H__ -#define __TYPES_H__ - -// This should be portable, since it's part of the C99 standard...! - -#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; - -/*#ifndef _WINDOWS_ -#define NULL 0 -// This is for non-compliant compilers that don't follow proper scoping rules (and suck). ;-) -#define for if(false);else for -#endif*/ -#ifndef NULL -#define NULL 0 -#endif - -#endif // __TYPES_H__