mirror of
git://sourceware.org/git/glibc.git
synced 2025-01-12 12:07:12 +08:00
11 lines
325 B
C
11 lines
325 B
C
|
#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);
|