summaryrefslogtreecommitdiff
path: root/lib/vector.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/vector.c')
-rw-r--r--lib/vector.c11
1 files changed, 0 insertions, 11 deletions
diff --git a/lib/vector.c b/lib/vector.c
index 38f9b1b85f..5497c24280 100644
--- a/lib/vector.c
+++ b/lib/vector.c
@@ -136,17 +136,6 @@ int vector_set_index(vector v, unsigned int i, void *val)
return i;
}
-/* Make a specified index slot active and return its address. */
-void **vector_get_index(vector v, unsigned int i)
-{
- vector_ensure(v, i);
-
- if (v->active <= i)
- v->active = i + 1;
-
- return &v->index[i];
-}
-
/* Look up vector. */
void *vector_lookup(vector v, unsigned int i)
{