From 8315656f318769611f932c57f1fd467f68bb9020 Mon Sep 17 00:00:00 2001 From: Derrick Brashear Date: Sat, 10 Feb 2001 21:49:43 +0000 Subject: [PATCH] fix-64bit-stds-h-patch-20010210 dux and irix compilers don't like # in other than first column --- src/config/stds.h | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/src/config/stds.h b/src/config/stds.h index 6c59c8a..9b297a8 100644 --- a/src/config/stds.h +++ b/src/config/stds.h @@ -57,15 +57,15 @@ typedef int afs_int32; typedef unsigned int afs_uint32; typedef long long afs_int64; typedef unsigned long long afs_uint64; - #define ZeroInt64(a) (a) = 0 - #define AssignInt64(a, b) *(a) = (b) - #define AddInt64(a,b,c) *(c) = (a) + (b) - #define SubtractInt64(a,b,c) *(c) = (a) - (b) - #define CompareInt64(a,b) (a) - (b) - #define NonZeroInt64(a) (a) - #define Int64ToInt32(a) (a) & 0xFFFFFFFFL - #define FillInt64(t,h,l) (t) = (h); (t) <<= 32; (t) |= (l); - #define SplitInt64(t,h,l) (h) = (t) >> 32; (l) = (t) & 0xFFFFFFFF; +#define ZeroInt64(a) (a) = 0 +#define AssignInt64(a, b) *(a) = (b) +#define AddInt64(a,b,c) *(c) = (a) + (b) +#define SubtractInt64(a,b,c) *(c) = (a) - (b) +#define CompareInt64(a,b) (a) - (b) +#define NonZeroInt64(a) (a) +#define Int64ToInt32(a) (a) & 0xFFFFFFFFL +#define FillInt64(t,h,l) (t) = (h); (t) <<= 32; (t) |= (l); +#define SplitInt64(t,h,l) (h) = (t) >> 32; (l) = (t) & 0xFFFFFFFF; #else /* AFS_64BIT_ENV */ typedef long afs_int32; typedef unsigned long afs_uint32; -- 1.9.4