summaryrefslogtreecommitdiff
path: root/ldso/dynlink.c
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2019-12-31 21:51:07 -0500
committerRich Felker <dalias@aerifal.cx>2019-12-31 21:51:07 -0500
commitb529ec9b52ff4b94e455f0e6cb1f3ef3994560d5 (patch)
tree6b49e769226c4de56168a54bdaf3d2549314a04a /ldso/dynlink.c
parent2fc29fcfc2507f02c6449646f7f082015ef52b8d (diff)
downloadmusl-b529ec9b52ff4b94e455f0e6cb1f3ef3994560d5.tar.gz
move stage3_func typedef out of shared internal dynlink.h header
this interface contract is entirely internal to dynlink.c.
Diffstat (limited to 'ldso/dynlink.c')
-rw-r--r--ldso/dynlink.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/ldso/dynlink.c b/ldso/dynlink.c
index 7810356b..59176812 100644
--- a/ldso/dynlink.c
+++ b/ldso/dynlink.c
@@ -107,6 +107,8 @@ struct symdef {
struct dso *dso;
};
+typedef void (*stage3_func)(size_t *);
+
static struct builtin_tls {
char c;
struct pthread pt;