diff options
Diffstat (limited to 'byterun/startup.h')
-rw-r--r-- | byterun/startup.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/byterun/startup.h b/byterun/startup.h index 3dda64b33..3268d8875 100644 --- a/byterun/startup.h +++ b/byterun/startup.h @@ -30,9 +30,9 @@ enum { FILE_NOT_FOUND = -1, BAD_BYTECODE = -2 }; extern int caml_attempt_open(char **name, struct exec_trailer *trail, int do_open_script); extern void caml_read_section_descriptors(int fd, struct exec_trailer *trail); -extern int32 caml_seek_optional_section(int fd, struct exec_trailer *trail, +extern int32_t caml_seek_optional_section(int fd, struct exec_trailer *trail, char *name); -extern int32 caml_seek_section(int fd, struct exec_trailer *trail, char *name); +extern int32_t caml_seek_section(int fd, struct exec_trailer *trail, char *name); #endif /* CAML_STARTUP_H */ |