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.
24
1998/
08
/
07
16
:
12
:
39
grubba
Exp $
+
* $Id: global.h,v 1.
25
1998/
10
/
11
11
:
18
:
51
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:179:
#elif defined(B4_T) struct b8_t_s { B4_T x,y; }; #define B8_T struct b8_t_s #endif #if defined(B8_T) struct b16_t_s { B8_T x,y; }; #define B16_T struct b16_t_s #endif
+
typedef unsigned char p_wchar0;
+
typedef unsigned INT16 p_wchar1;
+
typedef unsigned INT32 p_wchar2;
-
+
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 7) #define RCSID(X) \ static char *rcsid __attribute__ ((unused)) =X #elif __GNUC__ == 2 #define RCSID(X) \ static char *rcsid = X; \ static void *use_rcsid=(&use_rcsid, (void *)&rcsid) #else #define RCSID(X) \ static char *rcsid = X