summaryrefslogtreecommitdiffstats
path: root/byterun/fix_code.h
diff options
context:
space:
mode:
authorXavier Leroy <xavier.leroy@inria.fr>1997-02-02 14:53:44 +0000
committerXavier Leroy <xavier.leroy@inria.fr>1997-02-02 14:53:44 +0000
commit756c3c9882041df5321ecc69f1a0655398595c86 (patch)
tree572fee6af0feec6e89411a553d1f3498499ffbb3 /byterun/fix_code.h
parente7c777c655ead7f8ef16b6b2ecf5a07f4b44da2b (diff)
Nettoyage des appels a thread_code. Debug de caml_startup_code
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1250 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/fix_code.h')
-rw-r--r--byterun/fix_code.h8
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