diff options
Diffstat (limited to 'byterun/exec.h')
-rw-r--r-- | byterun/exec.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/byterun/exec.h b/byterun/exec.h index 27f291ec5..7e084acd4 100644 --- a/byterun/exec.h +++ b/byterun/exec.h @@ -39,13 +39,13 @@ struct section_descriptor { char name[4]; /* Section name */ - uint32 len; /* Length of data in bytes */ + uint32_t len; /* Length of data in bytes */ }; /* Structure of the trailer. */ struct exec_trailer { - uint32 num_sections; /* Number of sections */ + uint32_t num_sections; /* Number of sections */ char magic[12]; /* The magic number */ struct section_descriptor * section; /* Not part of file */ }; @@ -54,7 +54,7 @@ struct exec_trailer { /* Magic number for this release */ -#define EXEC_MAGIC "Caml1999X010" +#define EXEC_MAGIC "Caml1999X011" #endif /* CAML_EXEC_H */ |