diff options
Diffstat (limited to 'byterun/fix_code.h')
-rw-r--r-- | byterun/fix_code.h | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/byterun/fix_code.h b/byterun/fix_code.h index 7a66dc62c..652d2d816 100644 --- a/byterun/fix_code.h +++ b/byterun/fix_code.h @@ -17,11 +17,16 @@ #define _fix_code_ +#include "config.h" #include "misc.h" #include "mlvalues.h" +#ifdef THREADED_CODE +void ** instr_table; +#endif + void fixup_endianness P((code_t code, asize_t len)); -void thread_code P((code_t code, asize_t len, void * instr_table[])); +void thread_code P((code_t code, asize_t len)); #endif |