mirror of
https://codeberg.org/ziglang/zig.git
synced 2025-12-06 13:54:21 +00:00
I went ahead and left the README.md file deleted because it had broken git hashes. Better to use `git log -- lib/libc/glibc/` to find out the patches.
8 lines
232 B
C
Vendored
8 lines
232 B
C
Vendored
#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
|