mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-11 07:40:05 +00:00
11 lines
341 B
C
11 lines
341 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 __canonicalize_funcptr_for_compare(_start)
|
|
|
|
/* We have to provide a special declaration. */
|
|
#define ENTRY_POINT_DECL(class) class void _start (void);
|