[libc] Pull crt0 out into its own module
Sorta. crt0 is a separate module as far as bonnibel is concerned, but it's still part of the libc module file.
This commit is contained in:
7
src/libraries/libc/arch/amd64/libdl.cpp
Normal file
7
src/libraries/libc/arch/amd64/libdl.cpp
Normal file
@@ -0,0 +1,7 @@
|
||||
|
||||
extern "C" {
|
||||
// Stub out these libdl functions for libunwind until
|
||||
// we have a real libdl
|
||||
int dladdr(const void *, void *) { return 0; }
|
||||
int dl_iterate_phdr(void *, void *) { return 0; }
|
||||
}
|
||||
Reference in New Issue
Block a user