diff options
Diffstat (limited to 'rts/linker/MachO.h')
-rw-r--r-- | rts/linker/MachO.h | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/rts/linker/MachO.h b/rts/linker/MachO.h index 5e00e2a8d2..20cb2d061a 100644 --- a/rts/linker/MachO.h +++ b/rts/linker/MachO.h @@ -6,13 +6,14 @@ #include "MachOTypes.h" -void ocInit_MachO ( ObjectCode* oc ); -void ocDeinit_MachO ( ObjectCode* oc ); -int ocVerifyImage_MachO ( ObjectCode* oc ); -int ocGetNames_MachO ( ObjectCode* oc ); -int ocResolve_MachO ( ObjectCode* oc ); -int ocRunInit_MachO ( ObjectCode* oc ); -int machoGetMisalignment( FILE * ); -int ocAllocateExtras_MachO ( ObjectCode* oc ); +void ocInit_MachO ( ObjectCode* oc ); +void ocDeinit_MachO ( ObjectCode* oc ); +int ocVerifyImage_MachO ( ObjectCode* oc ); +size_t ocGetRequiredSpace_MachO ( ObjectCode* oc); +int ocGetNames_MachO ( ObjectCode* oc ); +int ocResolve_MachO ( ObjectCode* oc ); +int ocRunInit_MachO ( ObjectCode* oc ); +int machoGetMisalignment ( FILE * ); +int ocAllocateExtras_MachO ( ObjectCode* oc ); #include "EndPrivate.h" |