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.
41
2000/01/10 00:
48
:
45
hubbe Exp $
+
* $Id: global.h,v 1.
42
2000/01/10 00:
52
:
11
hubbe 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:185:
#define INT32 long #endif #endif #define MAX_INT32 2147483647 #define MIN_INT32 -2147483648 #define INT16 short #define INT8 char
+
#ifdef INT64
+
#define LONGEST INT64
+
#else
+
#define LONGEST INT32
+
#endif
+
#define SIZE_T unsigned INT32 #define TYPE_T unsigned INT8 #define TYPE_FIELD unsigned INT16 #ifndef WITH_DOUBLE_PRECISION_SVALUE #define FLOAT_TYPE float #else #ifdef WITH_LONG_DOUBLE_PRECISION_SVALUE #define FLOAT_TYPE long double