diff options
Diffstat (limited to 'lib/inst.c')
-rw-r--r-- | lib/inst.c | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -10,13 +10,13 @@ * Description: Implementation of bytecode for instructions */ +#include "./inst.h" + #include <assert.h> #include <stdbool.h> #include <stdio.h> #include <string.h> -#include "./inst.h" - const char *opcode_as_cstr(opcode_t code) { switch (code) |