diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/features.h | 2 | ||||
-rw-r--r-- | include/link.h | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/include/features.h b/include/features.h index 44bc4bb..8515b06 100644 --- a/include/features.h +++ b/include/features.h @@ -513,7 +513,7 @@ /* Major and minor version number of the GNU C library package. Use these macros to test for features in specific releases. */ #define __GLIBC__ 2 -#define __GLIBC_MINOR__ 41 +#define __GLIBC_MINOR__ 42 #define __GLIBC_PREREQ(maj, min) \ ((__GLIBC__ << 16) + __GLIBC_MINOR__ >= ((maj) << 16) + (min)) diff --git a/include/link.h b/include/link.h index 518bfd1..41e5e54 100644 --- a/include/link.h +++ b/include/link.h @@ -365,6 +365,8 @@ struct auditstate dynamic linker. */ extern struct r_debug_extended _r_debug_extended attribute_hidden; +rtld_hidden_proto (_r_debug) + #if __ELF_NATIVE_CLASS == 32 # define symbind symbind32 # define LA_SYMBIND "la_symbind32" |