Blame sysdeps/hppa/entry.h

Packit 6c4009
#ifndef __ASSEMBLY__
Packit 6c4009
extern void _start (void);
Packit 6c4009
#endif
Packit 6c4009
Packit 6c4009
/* Lives in libgcc.so and canonicalizes function pointers for comparison.  */
Packit 6c4009
extern unsigned int __canonicalize_funcptr_for_compare (unsigned int fptr);
Packit 6c4009
Packit 6c4009
/* The function's entry point is stored in the first word of the
Packit 6c4009
   function descriptor (plabel) of _start().  */
Packit 6c4009
#define ENTRY_POINT __canonicalize_funcptr_for_compare((unsigned int)_start)
Packit 6c4009
Packit 6c4009
/* We have to provide a special declaration.  */
Packit 6c4009
#define ENTRY_POINT_DECL(class) class void _start (void);