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.
110
2007
/
06
/
18
09
:
21
:
24
mast Exp $
+
|| $Id: global.h,v 1.
111
2008
/
03
/
29
16
:
20
:
16
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:428:
#define RCSID(X) #endif #ifdef PIKE_DEBUG #define DO_IF_DEBUG(X) X #else #define DO_IF_DEBUG(X) #define NDEBUG #endif
+
#if defined (PIKE_DEBUG) || defined (DO_PIKE_CLEANUP)
+
#define DO_IF_DEBUG_OR_CLEANUP(X) X
+
#else
+
#define DO_IF_DEBUG_OR_CLEANUP(X)
+
#endif
+
#ifdef INTERNAL_PROFILING #define DO_IF_INTERNAL_PROFILING(X) X #else #define DO_IF_INTERNAL_PROFILING(X) #endif #ifndef INLINE #if defined(__GNUC__) && !defined(PIKE_DEBUG) && !defined(lint) #define INLINE inline #else