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.
39
1999/
11
/
23
07
:
07
:
03
hubbe
Exp $
+
* $Id: global.h,v 1.
40
1999/
12
/
05
16
:
34
:
09
mirar
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:186:
#define MIN_INT32 -2147483648 #define INT16 short #define INT8 char #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
+
#else
+
#define FLOAT_TYPE double
+
#endif /* long double */
+
#endif /* double */
+
#define INT_TYPE INT32 #define B1_T char #if SIZEOF_SHORT == 2 #define B2_T short #elif SIZEOF_INT == 2 #define B2_T int #endif