diff options
author | Andy Wingo <wingo@pobox.com> | 2013-02-18 12:46:00 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2013-02-18 12:46:00 +0100 |
commit | 18cd9aff9429c99ffae34448507f9b468e20e06f (patch) | |
tree | 90bff712b74c1b67f3f5ef6c3f73da23b9ca07b3 /libguile/inline.c | |
parent | 3330f00f54649cdd0914b6ff03c7b7bbc38ffa8d (diff) | |
download | guile-18cd9aff9429c99ffae34448507f9b468e20e06f.tar.gz |
array handle inline functions defined in array-handle.h.
* libguile/inline.h:
* libguile/array-handle.h (scm_array_handle_ref):
(scm_array_handle_set): Move definitions here from inline.h.
* libguile/inline.c: Include array-handle.h.
Diffstat (limited to 'libguile/inline.c')
-rw-r--r-- | libguile/inline.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/libguile/inline.c b/libguile/inline.c index be7670ad7..591679413 100644 --- a/libguile/inline.c +++ b/libguile/inline.c @@ -1,4 +1,4 @@ -/* Copyright (C) 2001, 2006, 2008, 2011 Free Software Foundation, Inc. +/* Copyright (C) 2001, 2006, 2008, 2011, 2013 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 License @@ -23,5 +23,6 @@ #define SCM_IMPLEMENT_INLINES 1 #define SCM_INLINE_C_IMPLEMENTING_INLINES 1 #include "libguile/inline.h" +#include "libguile/array-handle.h" #include "libguile/gc.h" #include "libguile/smob.h" |