pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:1:
/* || This file is part of Pike. For copyright information see COPYRIGHT. || Pike is distributed under GPL, LGPL and MPL. See the file COPYING || for more information.
-
|| $Id: global.h,v 1.
95
2003
/
12
/
07
19
:
42
:
03
marcus
Exp $
+
|| $Id: global.h,v 1.
96
2004
/
03
/
16
14
:
43
:
02
mast
Exp $
*/ #ifndef GLOBAL_H #define GLOBAL_H #if defined(__WINNT__) && !defined(__NT__) #define __NT__ #endif #ifndef _LARGEFILE_SOURCE
pike.git/src/global.h:401:
#endif /* !PMOD_EXPORT */ /* PMOD_PROTO is essentially the same as PMOD_EXPORT, but * it exports the identifier even if it only a prototype. */ #ifndef PMOD_PROTO #define PMOD_PROTO #endif
+
#ifndef DO_PIKE_CLEANUP
#if defined(PURIFY) || defined(__CHECKER__) || \ defined(DEBUG_MALLOC) || defined(USE_VALGRIND) #define DO_PIKE_CLEANUP #endif
-
+
#endif
#ifdef PIKE_SECURITY #define DO_IF_SECURITY(X) X #else #define DO_IF_SECURITY(X) #endif /* Used by the AutoBuild system to mark known warnings. */ #define DO_NOT_WARN(X) (X)