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.
118
2009
/
05
/
28
12
:
13
:
20
grubba
Exp $
+
|| $Id: global.h,v 1.
119
2010
/
04
/
15
23
:
34
:
28
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:432:
#else #define RCSID(X) \ static const char rcsid[] = X #endif #else #define RCSID(X) #endif #ifdef PIKE_DEBUG #define DO_IF_DEBUG(X) X
+
#undef NDEBUG
#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