diff options
| author | Rose Hogenson <rhogenson@posteo.net> | 2023-02-11 21:31:04 -0800 |
|---|---|---|
| committer | Rose Hogenson <rhogenson@posteo.net> | 2023-02-11 21:31:04 -0800 |
| commit | 5989629a7951e544ad4656672025a99ecd08c7c9 (patch) | |
| tree | 89e2ca80f73d8dcf16a9fadcea41b2e141bdf4eb /bytecode/oper.h | |
| parent | aafc502de6f9ecbeb4638b1862f4fa5ac82199d7 (diff) | |
| download | sml-5989629a7951e544ad4656672025a99ecd08c7c9.tar.zst | |
Change how slices work.
I'm switching to a more macro-heavy solution. Hopefully it
proves robust.
Diffstat (limited to 'bytecode/oper.h')
| -rw-r--r-- | bytecode/oper.h | 4 |
1 files changed, 2 insertions, 2 deletions
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 |
