summaryrefslogtreecommitdiff
path: root/libguile/bytevectors.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/bytevectors.c')
-rw-r--r--libguile/bytevectors.c14
1 files changed, 0 insertions, 14 deletions
diff --git a/libguile/bytevectors.c b/libguile/bytevectors.c
index ce5fa962f..9a0698550 100644
--- a/libguile/bytevectors.c
+++ b/libguile/bytevectors.c
@@ -261,13 +261,6 @@ scm_c_make_bytevector (size_t len)
return make_bytevector (len, SCM_ARRAY_ELEMENT_TYPE_VU8);
}
-/* Return a new bytevector of size LEN elements. */
-SCM
-scm_i_make_typed_bytevector (size_t len, scm_t_array_element_type element_type)
-{
- return make_bytevector (len, element_type);
-}
-
/* Return a bytevector of size LEN made up of CONTENTS. The area pointed to
by CONTENTS must have been allocated using `scm_gc_malloc ()'. */
SCM
@@ -276,13 +269,6 @@ scm_c_take_bytevector (signed char *contents, size_t len)
return make_bytevector_from_buffer (len, contents, SCM_ARRAY_ELEMENT_TYPE_VU8);
}
-SCM
-scm_c_take_typed_bytevector (signed char *contents, size_t len,
- scm_t_array_element_type element_type)
-{
- return make_bytevector_from_buffer (len, contents, element_type);
-}
-
/* Shrink BV to C_NEW_LEN (which is assumed to be smaller than its current
size) and return the new bytevector (possibly different from BV). */
SCM