summaryrefslogtreecommitdiff
path: root/rts/linker/MachO.h
diff options
context:
space:
mode:
Diffstat (limited to 'rts/linker/MachO.h')
-rw-r--r--rts/linker/MachO.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/rts/linker/MachO.h b/rts/linker/MachO.h
new file mode 100644
index 0000000000..8c7fb1fc1a
--- /dev/null
+++ b/rts/linker/MachO.h
@@ -0,0 +1,21 @@
+#ifndef LINKER_MACHO_H
+#define LINKER_MACHO_H
+
+#include "Rts.h"
+
+#include "BeginPrivate.h"
+
+int ocVerifyImage_MachO ( ObjectCode* oc );
+int ocGetNames_MachO ( ObjectCode* oc );
+int ocResolve_MachO ( ObjectCode* oc );
+int ocRunInit_MachO ( ObjectCode* oc );
+int machoGetMisalignment( FILE * );
+int ocAllocateSymbolExtras_MachO ( ObjectCode* oc );
+
+#ifdef powerpc_HOST_ARCH
+void machoInitSymbolsWithoutUnderscore( void );
+#endif
+
+#include "EndPrivate.h"
+
+#endif /* LINKER_MACHO_H */