From 3c989a405ef1d885f2034aba2b1777ce6aa4d716 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Henrik=20Grubbstr=C3=B6m=20=28Grubba=29?= <grubba@grubba.org> Date: Thu, 10 Aug 2000 14:17:07 +0200 Subject: [PATCH] Prefer using __int64 to long long. Rev: src/global.h:1.48 --- src/global.h | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/global.h b/src/global.h index 2b831fca7a..0ee712617f 100644 --- a/src/global.h +++ b/src/global.h @@ -5,7 +5,7 @@ \*/ /* - * $Id: global.h,v 1.47 2000/08/07 15:54:20 grubba Exp $ + * $Id: global.h,v 1.48 2000/08/10 12:17:07 grubba Exp $ */ #ifndef GLOBAL_H #define GLOBAL_H @@ -167,11 +167,11 @@ char *alloca (); #if SIZEOF_LONG >= 8 #define INT64 long #else -#if SIZEOF_LONG_LONG - 0 >= 8 -#define INT64 long long -#else #if SIZEOF___INT64 - 0 >= 8 #define INT64 __int64 +#else +#if SIZEOF_LONG_LONG - 0 >= 8 +#define INT64 long long #endif #endif #endif -- GitLab