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.
72
2002/
08
/
14
15:
28
:
27
grubba
Exp $
+
* $Id: global.h,v 1.
73
2002/
09
/
13
15:
35
:
48
mast
Exp $
*/ #ifndef GLOBAL_H #define GLOBAL_H #if defined(__WINNT__) && !defined(__NT__) #define __NT__ #endif /* The worlds most stringent C compiler? */ #ifdef __TenDRA__
pike.git/src/global.h:287:
static char *rcsid = X #endif #ifdef PIKE_DEBUG #define DO_IF_DEBUG(X) X #else #define DO_IF_DEBUG(X) #define NDEBUG #endif
+
#ifdef INTERNAL_PROFILING
+
#define DO_IF_INTERNAL_PROFILING(X) X
+
#else
+
#define DO_IF_INTERNAL_PROFILING(X)
+
#endif
+
#if defined(__GNUC__) && !defined(PIKE_DEBUG) && !defined(lint) #define INLINE inline #else #define INLINE #endif /* PMOD_EXPORT exports a function / variable vfsh. * Putting PMOD_PROTO in front of a prototype does nothing. */ #ifndef PMOD_EXPORT