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.
62
2001/
06
/
10
00
:
22
:
47
grubba
Exp $
+
* $Id: global.h,v 1.
63
2001/
07
/
02
16
:
25
:
29
mast
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:196:
#define INT32 short #else #if SIZEOF_INT >= 4 #define INT32 int #else #define INT32 long #endif #endif #define MAX_INT32 2147483647
-
#define MIN_INT32
-
(
INT32
)
2147483648
+
#define MIN_INT32
(
-
2147483647-1
)
#define INT16 short #define INT8 char #ifdef INT64 #define LONGEST INT64 #else #define LONGEST INT32 #endif