From 5b9862907cb6c4fada25f9d1f5a9c3257a42c0a9 Mon Sep 17 00:00:00 2001 From: Justine Tunney Date: Thu, 29 Aug 2024 23:51:22 -0700 Subject: [PATCH] Delete superfluous function --- libc/dlopen/stubs.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/libc/dlopen/stubs.c b/libc/dlopen/stubs.c index 9a94e891b..8dad1af05 100644 --- a/libc/dlopen/stubs.c +++ b/libc/dlopen/stubs.c @@ -42,7 +42,3 @@ void *dlsym(void *, const char *) { int dlclose(void *) { return -1; } - -int dl_iterate_phdr(int (*)(void *, size_t, void *), void *) { - return -1; -}