1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-17 09:10:22 +02:00

Replace SCM_C_INLINE with SCM_C_INLINE_KEYWORD. Thanks to Mark Gran!

This commit is contained in:
Marius Vollmer 2006-05-27 21:32:22 +00:00
parent 4a342b19e2
commit b0c0a310db
3 changed files with 18 additions and 13 deletions

View file

@ -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");