From b11761f2ca9dfb83ba599670086ed60a3fe3ee54 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Tue, 25 Mar 2003 23:56:49 +0000 Subject: [PATCH] * inline.c: rearrange handling -- now we just #define SCM_INLINE_C_INCLUDING_INLINE_H to 1 and #include "libguile/inline.h". scmconfig.h will define SCM_C_INLINE as appropriate, and we use that in inline.h along with the above define to determine how to respond. --- libguile/inline.c | 12 +----------- 1 file changed, 1 insertion(+), 11 deletions(-) diff --git a/libguile/inline.c b/libguile/inline.c index 66e348b1c..80cc58fa6 100644 --- a/libguile/inline.c +++ b/libguile/inline.c @@ -39,15 +39,5 @@ * whether to permit this exception to apply to your modifications. * If you do not wish that, delete this exception notice. */ -#include -#include "libguile/scmconfig.h" - -#ifndef HAVE_INLINE -#define HAVE_INLINE -#endif - -#define EXTERN_INLINE -#undef SCM_INLINE_H - +#define SCM_INLINE_C_INCLUDING_INLINE_H 1 #include "libguile/inline.h" -