summaryrefslogtreecommitdiffhomepage
path: root/src/ldso/nt64/dl_iterate_phdr.c
blob: 68b99b614cef29f726a9b457e6b30389a12acd34 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
/**************************************************************************/
/*  mmglue: midipix architecture- and target-specific bits for musl libc  */
/*  Copyright (C) 2013--2023  SysDeer Technologies, LLC                   */
/*  Released under GPLv2 and GPLv3; see COPYING.MMGLUE.                   */
/**************************************************************************/

#include <stddef.h>
#include <dlfcn.h>
#include <link.h>

typedef int __ldso_phdr_callback(struct dl_phdr_info * info, size_t size, void * data);

int dl_iterate_phdr(__ldso_phdr_callback * callback, void * data)
{
	return -1;
}