From 2b2c6fca20f959db6e58e6638059f74a817f4fea Mon Sep 17 00:00:00 2001 From: Marius Vollmer Date: Fri, 12 Sep 2003 14:13:48 +0000 Subject: [PATCH] Use "extern inline" only with GCC. Use "static inline" else. --- libguile/inline.h | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/libguile/inline.h b/libguile/inline.h index 393865233..0a3c8ad75 100644 --- a/libguile/inline.h +++ b/libguile/inline.h @@ -3,7 +3,7 @@ #ifndef SCM_INLINE_H #define SCM_INLINE_H -/* Copyright (C) 2001, 2002 Free Software Foundation, Inc. +/* Copyright (C) 2001, 2002, 2003 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public @@ -53,7 +53,12 @@ extern unsigned scm_newcell_count; #if defined SCM_C_INLINE && ! defined SCM_INLINE_C_INCLUDING_INLINE_H /* definitely inlining */ -extern SCM_C_INLINE +#ifdef __GNUC__ +extern +#else +static +#endif +SCM_C_INLINE #endif SCM scm_cell (scm_t_bits car, scm_t_bits cdr) @@ -145,7 +150,12 @@ scm_cell (scm_t_bits car, scm_t_bits cdr) #if defined SCM_C_INLINE && ! defined SCM_INLINE_C_INCLUDING_INLINE_H /* definitely inlining */ -extern SCM_C_INLINE +#ifdef __GNUC__ +extern +#else +static +#endif +SCM_C_INLINE #endif SCM scm_double_cell (scm_t_bits car, scm_t_bits cbr,