modified: makefile
[GalaxyCodeBases.git] / c_cpp / etc / calc / win32 / longbits.h
bloba8a70e31164e649ab91291126b69128dc8e6c043
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 /* size of long was forced */
15 typedef unsigned char USB8; /* unsigned 8 bits */
16 typedef signed char SB8; /* signed 8 bits */
18 typedef unsigned short USB16; /* unsigned 16 bits */
19 typedef short SB16; /* signed 16 bits */
21 typedef unsigned long USB32; /* unsigned 32 bits */
22 typedef long SB32; /* signed 32 bits */
24 #undef HAVE_B64
25 #define HAVE_B64 /* have USB64 and SB64 types */
26 typedef unsigned long long USB64; /* unsigned 64 bits */
27 typedef long long SB64; /* signed 64 bits */
29 /* how to form 64 bit constants */
30 #define U(x) x ## ULL
31 #define L(x) x ## LL
34 #endif /* !__LONGBITS_H__ */