summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/jib/c_codegen.ml2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/jib/c_codegen.ml b/src/jib/c_codegen.ml
index 2e736d5b..3cf56ba4 100644
--- a/src/jib/c_codegen.ml
+++ b/src/jib/c_codegen.ml
@@ -1261,7 +1261,7 @@ let codegen_vector_header ctx id (direction, ctyp) =
if is_stack_ctyp ctyp then
string (Printf.sprintf "%s vector_access_%s(%s op, sail_int n);" (sgen_ctyp ctyp) (sgen_id id) (sgen_id id))
else
- string (Printf.sprintf "static void vector_access_%s(%s *rop, %s op, sail_int n);" (sgen_id id) (sgen_ctyp ctyp) (sgen_id id))
+ string "" (* Not needed in the header file at the moment *)
^^ twice hardline
let codegen_vector_body ctx id (direction, ctyp) =