diff options
Diffstat (limited to 'byterun/fix_code.h')
-rw-r--r-- | byterun/fix_code.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/byterun/fix_code.h b/byterun/fix_code.h index b26f0fc71..5b1e97c70 100644 --- a/byterun/fix_code.h +++ b/byterun/fix_code.h @@ -24,14 +24,14 @@ extern code_t start_code; extern asize_t code_size; extern unsigned char * saved_code; -#ifdef THREADED_CODE -extern void ** instr_table; -#endif void load_code P((int fd, asize_t len)); void fixup_endianness P((code_t code, asize_t len)); -void thread_code P((code_t code, asize_t len)); void set_instruction P((code_t pos, opcode_t instr)); +#ifdef THREADED_CODE +extern void ** instr_table; +void thread_code P((code_t code, asize_t len)); +#endif #endif |