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.
27
1999/
02
/
27
17
:
19
:
12
grubba
Exp $
+
* $Id: global.h,v 1.
28
1999/
03/
02
03
:
13
:
14
hubbe
Exp $
*/ #ifndef GLOBAL_H #define GLOBAL_H #ifndef _LARGEFILE_SOURCE # define _FILE_OFFSET_BITS 64 # define _LARGEFILE_SOURCE # define _LARGEFILE64_SOURCE 1 #endif
pike.git/src/global.h:136:
#if SIZEOF_SHORT >= 4 #define INT32 short #else #if SIZEOF_INT >= 4 #define INT32 int #else #define INT32 long #endif #endif
+
#define MAX_INT32 2147483647
+
#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 #define FLOAT_TYPE float #define INT_TYPE INT32