ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/BasiliskII/src/Unix/sysdeps.h
(Generate patch)

Comparing BasiliskII/src/Unix/sysdeps.h (file contents):
Revision 1.7 by cebix, 1999-10-27T16:59:48Z vs.
Revision 1.8 by cebix, 1999-10-27T17:50:07Z

# Line 96 | Line 96 | typedef long int32;
96   #if SIZEOF_LONG == 8
97   typedef unsigned long uint64;
98   typedef long int64;
99 + #define VAL64(a) (a ## l)
100 + #define UVAL64(a) (a ## ul)
101   #elif SIZEOF_LONG_LONG == 8
102   typedef unsigned long long uint64;
103   typedef long long int64;
104 + #define VAL64(a) (a ## LL)
105 + #define UVAL64(a) (a ## uLL)
106   #else
107   #error "No 8 byte type, you lose."
108   #endif

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines