diff options
author | Marius Vollmer <mvo@zagadka.de> | 2006-05-27 21:32:22 +0000 |
---|---|---|
committer | Marius Vollmer <mvo@zagadka.de> | 2006-05-27 21:32:22 +0000 |
commit | b0c0a310db8c99c70066e1ccd97874f48422d173 (patch) | |
tree | ec05a5619d16ea7e40ab59cee3d18442617daa3a /libguile/strings.c | |
parent | 4a342b19e2b323e0bf77c454f68e6d9d70bba870 (diff) | |
download | guile-b0c0a310db8c99c70066e1ccd97874f48422d173.tar.gz |
Replace SCM_C_INLINE with SCM_C_INLINE_KEYWORD. Thanks to Mark Gran!
Diffstat (limited to 'libguile/strings.c')
-rw-r--r-- | libguile/strings.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libguile/strings.c b/libguile/strings.c index 1f3094dc6..947bcb498 100644 --- a/libguile/strings.c +++ b/libguile/strings.c @@ -124,7 +124,7 @@ make_stringbuf (size_t len) /* Return a new stringbuf whose underlying storage consists of the LEN+1 octets pointed to by STR (the last octet is zero). */ -SCM_C_INLINE SCM +SCM_C_INLINE_KEYWORD SCM scm_i_take_stringbufn (char *str, size_t len) { scm_gc_register_collectable_memory (str, len + 1, "stringbuf"); |