From: Ulrich Drepper Date: Mon, 19 Apr 2004 06:48:59 +0000 (+0000) Subject: Entry point definition for hppa. X-Git-Tag: upstream/2.30~10627^2~1185 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e5931923b659ce18e191e455551c899859df341c;p=external%2Fglibc.git Entry point definition for hppa. --- diff --git a/sysdeps/hppa/elf/entry.h b/sysdeps/hppa/elf/entry.h new file mode 100644 index 0000000..b024db2 --- /dev/null +++ b/sysdeps/hppa/elf/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 __canonicalize_funcptr_for_compare(_start) + +/* We have to provide a special declaration. */ +#define ENTRY_POINT_DECL(class) class void _start (void);