diff options
Diffstat (limited to 'libguile/gc-malloc.c')
-rw-r--r-- | libguile/gc-malloc.c | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/libguile/gc-malloc.c b/libguile/gc-malloc.c index 3f2f23d76..7879212bf 100644 --- a/libguile/gc-malloc.c +++ b/libguile/gc-malloc.c @@ -173,13 +173,6 @@ scm_gc_calloc (size_t size, const char *what) return scm_gc_malloc (size, what); } -void * -scm_gc_realloc (void *mem, size_t old_size, size_t new_size, const char *what) -{ - /* FIXME: Remove me. */ - return GC_REALLOC (mem, new_size ? new_size : sizeof (void *)); -} - char * scm_gc_strndup (const char *str, size_t n, const char *what) { |