mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-19 11:30:06 +00:00
8 lines
217 B
C
8 lines
217 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])
|