From 50817f791efd95995e10ba04bc53c7689d1d9af5 Mon Sep 17 00:00:00 2001 From: jsorg71 Date: Wed, 11 Apr 2007 03:37:42 +0000 Subject: [PATCH] added size int types --- common/arch.h | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/common/arch.h b/common/arch.h index 2cb533d8..13e22ad5 100644 --- a/common/arch.h +++ b/common/arch.h @@ -62,4 +62,15 @@ #define EXPORT_CC #endif +typedef char ti8; +typedef unsigned char tui8; +typedef signed char tsi8; +typedef short ti16; +typedef unsigned short tui16; +typedef signed short tsi16; +typedef int ti32; +typedef unsigned int tui32; +typedef signed int tsi32; +typedef long tbus; + #endif