diff options
author | Ludovic Courtès <ludo@gnu.org> | 2008-09-15 22:59:08 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2008-09-15 22:59:08 +0200 |
commit | d6c74168a7312dd574dbb33e4f2933473fc05e7d (patch) | |
tree | cdd980efea13f313b89b5d8c43dfff812f99152a /libguile/strings.h | |
parent | 11d2fc0660605ed4331c897291300c556be94001 (diff) | |
download | guile-d6c74168a7312dd574dbb33e4f2933473fc05e7d.tar.gz |
Remove unused GC string/symbol functions.
* libguile/strings.c (scm_i_stringbuf_mark, scm_i_stringbuf_free,
scm_i_string_mark, scm_i_string_free, scm_i_symbol_mark,
scm_i_symbol_free): Remove.
* libguile/strings.h: Remove corresponding declarations.
Diffstat (limited to 'libguile/strings.h')
-rw-r--r-- | libguile/strings.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/libguile/strings.h b/libguile/strings.h index ca5f52cd2..e81ee3d98 100644 --- a/libguile/strings.h +++ b/libguile/strings.h @@ -135,15 +135,6 @@ SCM_INTERNAL const char *scm_i_symbol_chars (SCM sym); SCM_INTERNAL size_t scm_i_symbol_length (SCM sym); SCM_INTERNAL SCM scm_i_symbol_substring (SCM sym, size_t start, size_t end); -/* internal GC functions. */ - -SCM_INTERNAL SCM scm_i_string_mark (SCM str); -SCM_INTERNAL SCM scm_i_stringbuf_mark (SCM buf); -SCM_INTERNAL SCM scm_i_symbol_mark (SCM buf); -SCM_INTERNAL void scm_i_string_free (SCM str); -SCM_INTERNAL void scm_i_stringbuf_free (SCM buf); -SCM_INTERNAL void scm_i_symbol_free (SCM sym); - /* internal utility functions. */ SCM_INTERNAL char **scm_i_allocate_string_pointers (SCM list); |