pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:1:
/*\ ||| This file a part of Pike, and is copyright by Fredrik Hubinette ||| Pike is distributed as GPL (General Public License) ||| See the files COPYING and DISCLAIMER for more information. \*/ /*
-
* $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 #if defined(__WINNT__) && !defined(__NT__) #define __NT__ #endif /* The worlds most stringent C compiler? */ #ifdef __TenDRA__
pike.git/src/global.h:160:
#include <windows.h> #undef HAVE_WINDOWS_H #endif /* we here define a few types with more defined values */ #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 #if SIZEOF_SHORT >= 4 #define INT32 short #else #if SIZEOF_INT >= 4 #define INT32 int #else