Skip to content
Snippets Groups Projects
Commit 3c989a40 authored by Henrik (Grubba) Grubbström's avatar Henrik (Grubba) Grubbström
Browse files

Prefer using __int64 to long long.

Rev: src/global.h:1.48
parent 404610bd
No related branches found
No related tags found
No related merge requests found
......@@ -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
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment