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.
29
1999/04/
07
23
:
10
:
05
hubbe
Exp $
+
* $Id: global.h,v 1.
30
1999/04/
25
20
:
17
:
40
grubba
Exp $
*/ #ifndef GLOBAL_H #define GLOBAL_H
-
+
/* The worlds most stringent C compiler? */
+
#ifdef __TenDRA__
+
/* We want to be able to use 64bit arithmetic */
+
#pragma TenDRA longlong type allow
+
#pragma TenDRA set longlong type : long long
+
/* Decrease the ANSI C stringency. */
+
#if __STDC__ - 0 != 0
+
#undef __STDC__
+
#define __STDC__ 0
+
#endif /* __TenDRA__ */
+
#ifndef _LARGEFILE_SOURCE # define _FILE_OFFSET_BITS 64 # define _LARGEFILE_SOURCE # define _LARGEFILE64_SOURCE 1 #endif /* HPUX needs these too... */ #ifndef __STDC_EXT__ # define __STDC_EXT__ #endif /* !__STDC_EXT__ */