pike.git/
src/
global.h
Branch:
Tag:
Non-build tags
All tags
No tags
2004-09-26
2004-09-26 15:10:29 by Marcus Comstedt <marcus@mc.pp.se>
a65758319c3f6e2477adf24007e3b1f0e32669b5 (
5
lines) (+
4
/-
1
)
[
Show
|
Annotate
]
Branch:
7.6
Don't define INLINE if it's already defined.
Rev: src/global.h:1.97
2:
|| 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
375:
#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.