From ac5d085691e5a797a21ae36111aa0b274e1cf4ba Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Thu, 6 Sep 2012 22:58:34 -0400 Subject: dladdr should be available under _BSD_SOURCE as well as _GNU_SOURCE --- include/dlfcn.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'include/dlfcn.h') 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; -- cgit v1.2.1