1 /* RCS $Id: itypes.h,v 1.3 2004-04-21 14:10:32 svesik Exp $
4 -- Type declarations for common types
7 -- portable type declarations.
10 -- Dennis Vadura, dvadura@dmake.wticorp.com
13 -- http://dmake.wticorp.com/
16 -- Copyright (c) 1996,1997 by WTI Corp. All rights reserved.
18 -- This program is NOT free software; you can redistribute it and/or
19 -- modify it under the terms of the Software License Agreement Provided
20 -- in the file <distribution-root>/readme/license.txt.
23 -- Use cvs log to obtain detailed change logs.
31 typedef unsigned char uint8
;
35 typedef signed char int8
;
40 typedef unsigned short uint16
;
50 typedef unsigned int uint16
;
58 # error "No 2 byte type, you lose."
63 typedef unsigned int uint32
;
68 #elif SIZEOF_LONG == 4
70 typedef unsigned long uint32
;
77 # error "No 4 byte type, you lose."