aboutsummaryrefslogtreecommitdiffstats
path: root/variable.c
diff options
context:
space:
mode:
Diffstat (limited to 'variable.c')
-rw-r--r--variable.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/variable.c b/variable.c
index f6dd3ee47d..e64a2fb217 100644
--- a/variable.c
+++ b/variable.c
@@ -1038,7 +1038,7 @@ gen_ivtbl_bytes(size_t n)
return sizeof(struct gen_ivtbl) + n * sizeof(VALUE) - sizeof(VALUE);
}
-struct gen_ivtbl *
+static struct gen_ivtbl *
gen_ivtbl_resize(struct gen_ivtbl *old, long n)
{
long len = old ? old->numiv : 0;
@@ -1052,7 +1052,8 @@ gen_ivtbl_resize(struct gen_ivtbl *old, long n)
return ivtbl;
}
-struct gen_ivtbl *
+#if 0
+static struct gen_ivtbl *
gen_ivtbl_dup(const struct gen_ivtbl *orig)
{
size_t s = gen_ivtbl_bytes(orig->numiv);
@@ -1062,6 +1063,7 @@ gen_ivtbl_dup(const struct gen_ivtbl *orig)
return ivtbl;
}
+#endif
static long
iv_index_tbl_newsize(struct ivar_update *ivup)