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.
96
2004/
03
/
16
14
:
43
:
02
mast
Exp $
+
|| $Id: global.h,v 1.
97
2004/
09
/
26
15
:
10
:
29
marcus
Exp $
*/ #ifndef GLOBAL_H #define GLOBAL_H #if defined(__WINNT__) && !defined(__NT__) #define __NT__ #endif #ifndef _LARGEFILE_SOURCE
pike.git/src/global.h:368:
#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
+
#ifndef INLINE
#if defined(__GNUC__) && !defined(PIKE_DEBUG) && !defined(lint) #define INLINE inline #else #define INLINE #endif
-
+
#endif
/* PMOD_EXPORT exports a function / variable / whatever. * Putting PMOD_PROTO in front of a prototype does nothing. */ #ifndef PMOD_EXPORT #ifdef __NT__ #ifdef DYNAMIC_MODULE #ifdef _M_IA64 /* Make sure we use long calls to functions in the main binary. */ #define PMOD_EXPORT __declspec(dllimport)