reenabled swaptest. quake should now load data and start on big endian architectures...
[AROS-Contrib.git] / gnu / abc-shell / ksh_limval.h
blob50b2ea3358383d9f314d458f1d2eda00cb40cfe3
1 /* Wrapper around the values.h/limits.h includes/ifdefs */
2 /* $Id$ */
4 /* limits.h is included in sh.h */
6 #ifndef DMAXEXP
7 # define DMAXEXP 128 /* should be big enough */
8 #endif
10 #ifndef BITSPERBYTE
11 # define BITSPERBYTE CHAR_BIT
12 #endif
14 #ifndef BITS
15 # define BITS(t) (CHAR_BIT * sizeof(t))
16 #endif