diff options
author | Damien Doligez <damien.doligez-inria.fr> | 1996-11-02 18:00:46 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 1996-11-02 18:00:46 +0000 |
commit | 312cfbddfd988fb1b74299ff90e19b1b6ef30043 (patch) | |
tree | 54250fbbfc3056c052edb0c680a6171c2f690beb /byterun/fix_code.h | |
parent | 1aaf9a118aef383c39ff7424ae8814c836bda771 (diff) |
Portage Mac/MPW:
Makefile: clean: eviter d'effacer interp.a
config.h: #include pour Mac
fix_code.c: version sans switch
interp.c: ajout action periodique, suppression de quelques ++ inutiles
main.c: initialisation action periodique
major_gc.c: return 0 pour calmer le compilo C
misc.c: ui_gc_message et ui_fatal_error -> ui_print_stderr
signals.h: include "mlvalues.h"
startup.c: donne la chaine pour uncaught exception Failure
sys.c: diverses modifs Mac
terminfo.c: return Val_unit pour calmer le compilo C
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1134 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
Diffstat (limited to 'byterun/fix_code.h')
-rw-r--r-- | byterun/fix_code.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/byterun/fix_code.h b/byterun/fix_code.h index 652d2d816..c6ff34d27 100644 --- a/byterun/fix_code.h +++ b/byterun/fix_code.h @@ -22,7 +22,7 @@ #include "mlvalues.h" #ifdef THREADED_CODE -void ** instr_table; +extern void ** instr_table; #endif void fixup_endianness P((code_t code, asize_t len)); @@ -30,4 +30,3 @@ void thread_code P((code_t code, asize_t len)); #endif - |