ccollect:0.6.2->0.7.0
[nslu2-linux/optware.git] / sources / calc / longbits.h
blobbea6f513339bf8f689b0989c63cd6d2e81320fab
1 /*
2 * DO NOT EDIT -- generated by the Makefile
3 */
6 #if !defined(__LONGBITS_H__)
7 #define __LONGBITS_H__
10 #undef LONG_BITS
11 #define LONG_BITS 32 /* bit length of a long */
13 typedef unsigned char USB8; /* unsigned 8 bits */
14 typedef signed char SB8; /* signed 8 bits */
16 typedef unsigned short USB16; /* unsigned 16 bits */
17 typedef short SB16; /* signed 16 bits */
19 typedef unsigned long USB32; /* unsigned 32 bits */
20 typedef long SB32; /* signed 32 bits */
22 #undef HAVE_B64
23 #define HAVE_B64 /* have USB64 and SB64 types */
24 typedef unsigned long long USB64; /* unsigned 64 bits */
25 typedef long long SB64; /* signed 64 bits */
27 /* how to form 64 bit constants */
28 #define U(x) x ## ULL
29 #define L(x) x ## LL
32 #endif /* !__LONGBITS_H__ */