diff options
author | Xavier Leroy <xavier.leroy@inria.fr> | 1997-09-02 12:55:01 +0000 |
---|---|---|
committer | Xavier Leroy <xavier.leroy@inria.fr> | 1997-09-02 12:55:01 +0000 |
commit | 1517cea772058b0fcbe778d05b8b99c7e6f3b25f (patch) | |
tree | a2d817fe623f81b7729ed3cd2e128cad91eca02b /byterun/fix_code.h | |
parent | d75918f7e459b507ac6b4b95f14df0a1eedd4937 (diff) |
Sources C convertis en ANSI C
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@1696 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
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 62131815a..3ff34b995 100644 --- a/byterun/fix_code.h +++ b/byterun/fix_code.h @@ -26,14 +26,14 @@ extern asize_t code_size; extern unsigned char * saved_code; extern unsigned char code_md5[16]; -void load_code P((int fd, asize_t len)); -void fixup_endianness P((code_t code, asize_t len)); -void set_instruction P((code_t pos, opcode_t instr)); +void load_code (int fd, asize_t len); +void fixup_endianness (code_t code, asize_t len); +void set_instruction (code_t pos, opcode_t instr); #ifdef THREADED_CODE extern char ** instr_table; extern char * instr_base; -void thread_code P((code_t code, asize_t len)); +void thread_code (code_t code, asize_t len); #endif #endif |