Entry point definition for hppa.

This commit is contained in:
Ulrich Drepper 2004-04-19 06:48:59 +00:00
parent 7c1ebdffa6
commit e5931923b6

10
sysdeps/hppa/elf/entry.h Normal file
View File

@ -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);