5 Copyright © 1995-2001, The AROS Development Team. All rights reserved.
8 Desc: Sizes of c(++) types
12 /* How many bits/bytes has a type? */
14 #define BYTESPERLONG 4
15 #define BITSPERLONG (BITSPERBYTE * BYTESPERLONG)
16 #define BYTESPERQUAD 8
17 #define BITSPERQUAD (BITSPERBYTE * BYTESPERQUAD)
19 /* Minimum and maximum value of a signed type */
20 #define MININT (1 << (((sizeof(int) * BITSPERBYTE) - 1))
21 #define MAXINT (~MININT)
23 #endif /* _VALUES_H_ */