mailing list of musl libc
 help / color / mirror / code / Atom feed
6a01106d37196bf195c2a23d847e138a2532fbf5 blob 828 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
 
#ifndef	_DLFCN_H
#define	_DLFCN_H

#ifdef __cplusplus
extern "C" {
#endif

#include <features.h>

#define RTLD_LAZY   1
#define RTLD_NOW    2
#define RTLD_NOLOAD 4
#define RTLD_NODELETE 4096
#define RTLD_GLOBAL 256
#define RTLD_LOCAL  0

#define RTLD_NEXT    ((void *)-1)
#define RTLD_DEFAULT ((void *)0)

#define RTLD_DI_LINKMAP 2

int    dlclose(void *);
char  *dlerror(void);
void  *dlopen(const char *, int);
void  *dlsym(void *__restrict, const char *__restrict);

#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
typedef struct {
	const char *dli_fname;
	void *dli_fbase;
	const char *dli_sname;
	void *dli_saddr;
} Dl_info;
int dladdr(const void *, Dl_info *);
int dlinfo(void *, int, void *);
void *fdlopen(int, int);
#endif

#if _REDIR_TIME64
__REDIR(dlsym, __dlsym_time64);
#endif

#ifdef __cplusplus
}
#endif

#endif
debug log:

solving 6a01106d ...
found 6a01106d in https://inbox.vuxu.org/musl/20230508181413.194379-3-pedro.falcato@gmail.com/
found 13ab71dd in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 13ab71dd071eb5cdfe0d6cc593d906bf8e6b819d	include/dlfcn.h

applying [1/1] https://inbox.vuxu.org/musl/20230508181413.194379-3-pedro.falcato@gmail.com/
diff --git a/include/dlfcn.h b/include/dlfcn.h
index 13ab71dd..6a01106d 100644

Checking patch include/dlfcn.h...
Applied patch include/dlfcn.h cleanly.

index at:
100644 6a01106d37196bf195c2a23d847e138a2532fbf5	include/dlfcn.h

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).