blob: b024db2be77dd027b36550aa05392888fd166255 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
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);
|