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.
104
2004/09/
26
15
:
14
:
44
marcus
Exp $
+
|| $Id: global.h,v 1.
105
2004/09/
27
21
:
47
:
35
mast
Exp $
*/ #ifndef GLOBAL_H #define GLOBAL_H /* Mingw32 workarounds */ #if (defined(__WINNT__) || defined(__WIN32__)) && !defined(__NT__) #define __NT__ #endif
pike.git/src/global.h:429:
/* 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)
+
#if defined(PURIFY) || defined(__CHECKER__) || defined(DEBUG_MALLOC)
#define DO_PIKE_CLEANUP #endif #endif #ifdef PIKE_SECURITY #define DO_IF_SECURITY(X) X #else #define DO_IF_SECURITY(X) #endif