pike.git
/
src
/
global.h
version
»
Context lines:
10
20
40
80
file
none
3
pike.git/src/global.h:698:
#define DO_IF_PROFILING(X) X #else #define DO_IF_PROFILING(X) #endif /* #define PROFILING_DEBUG */ #ifdef PROFILING_DEBUG #define W_PROFILING_DEBUG(...) WERR(__VA_ARGS__) #else /* !PROFILING_DEBUG */
-
#define W_PROFILING_
DEBIG
(...)
+
#define W_PROFILING_
DEBUG
(...)
#endif /* PROFILING_DEBUG */ #ifdef HAVE_C99_STRUCT_LITERAL_EXPR /* This macro is used for eg type-safe struct initializers. */ #define CAST_STRUCT_LITERAL(TYPE) (TYPE) #else /* Prior to C99 the literal was a special form only valid in * initializers (ie not in general expressions). */ #define CAST_STRUCT_LITERAL(TYPE) #endif #endif