summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorRich Felker <dalias@aerifal.cx>2012-09-06 22:58:34 -0400
committerRich Felker <dalias@aerifal.cx>2012-09-06 22:58:34 -0400
commitac5d085691e5a797a21ae36111aa0b274e1cf4ba (patch)
tree84a0c2137558e53831720c232a454c32c621437f /include
parent400c5e5c8307a2ebe44ef1f203f5a15669f20347 (diff)
downloadmusl-ac5d085691e5a797a21ae36111aa0b274e1cf4ba.tar.gz
dladdr should be available under _BSD_SOURCE as well as _GNU_SOURCE
Diffstat (limited to 'include')
-rw-r--r--include/dlfcn.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/dlfcn.h b/include/dlfcn.h
index 2e7d0283..53871ee0 100644
--- a/include/dlfcn.h
+++ b/include/dlfcn.h
@@ -24,7 +24,7 @@ char *dlerror(void);
void *dlopen(const char *, int);
void *dlsym(void *__restrict, const char *__restrict);
-#ifdef _GNU_SOURCE
+#if defined(_GNU_SOURCE) || defined(_BSD_SOURCE)
typedef struct {
const char *dli_fname;
void *dli_fbase;