From 5989629a7951e544ad4656672025a99ecd08c7c9 Mon Sep 17 00:00:00 2001 From: Rose Hogenson Date: Sat, 11 Feb 2023 21:31:04 -0800 Subject: Change how slices work. I'm switching to a more macro-heavy solution. Hopefully it proves robust. --- bytecode/oper.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'bytecode/oper.h') diff --git a/bytecode/oper.h b/bytecode/oper.h index f3bb688..7174e1d 100644 --- a/bytecode/oper.h +++ b/bytecode/oper.h @@ -1,8 +1,8 @@ #ifndef _OPER_H_ #define _OPER_H_ -#include "slice.h" +#include "byte_slice.h" -void run(struct slice); +void run(uint8_t_slice); #endif -- cgit v1.3.1