blob: 9ae8b8615ca99de89fe07c2249e9e55dd0c54d0f (
plain)
1
2
3
4
5
6
7
8
|
#include <link.h>
#include <dl-fptr.h>
extern void _start (void);
/* The function's entry point is stored in the first word of the
function descriptor (plabel) of _start(). */
#define ENTRY_POINT ELF_PTR_TO_FDESC (_start)->ip
|