summaryrefslogtreecommitdiff
path: root/ports/sysdeps/ia64/entry.h
diff options
context:
space:
mode:
Diffstat (limited to 'ports/sysdeps/ia64/entry.h')
-rw-r--r--ports/sysdeps/ia64/entry.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/ports/sysdeps/ia64/entry.h b/ports/sysdeps/ia64/entry.h
new file mode 100644
index 0000000000..b93e1b6a57
--- /dev/null
+++ b/ports/sysdeps/ia64/entry.h
@@ -0,0 +1,10 @@
+#ifndef __ASSEMBLY__
+extern void _start (void);
+#endif
+
+/* The function's entry point is stored in the first word of the
+ function descriptor (plabel) of _start(). */
+#define ENTRY_POINT (((long int *) _start)[0])
+
+/* We have to provide a special declaration. */
+#define ENTRY_POINT_DECL(class) class void _start (void);