diff options
author | Rob Browning <rlb@defaultvalue.org> | 2003-03-25 23:56:49 +0000 |
---|---|---|
committer | Rob Browning <rlb@defaultvalue.org> | 2003-03-25 23:56:49 +0000 |
commit | b11761f2ca9dfb83ba599670086ed60a3fe3ee54 (patch) | |
tree | 6198bcbfa3d4dd7049dfdd28a6280ebaf83972e8 | |
parent | 6f0250f7b408f28167bc596a964ac280ae19840f (diff) | |
download | guile-b11761f2ca9dfb83ba599670086ed60a3fe3ee54.tar.gz |
* 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.
-rw-r--r-- | libguile/inline.c | 12 |
1 files changed, 1 insertions, 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 <stdio.h> -#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" - |