diff options
author | Mike Frysinger <vapier@gentoo.org> | 2015-02-24 00:10:42 -0500 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2015-02-24 00:10:42 -0500 |
commit | cda700b4c8a8a60362f14b79243eaaadbebd09ef (patch) | |
tree | 1a508332029ce7545ff4ce0f68ded36e9a61be9e /sysdeps/unix/sysv/linux/hppa | |
parent | 7b1ec6a05ceac76efca999ebab515afc4caaa5e9 (diff) | |
download | glibc-cda700b4c8a8a60362f14b79243eaaadbebd09ef.tar.gz |
hppa: fix build failure with RTLD_PRIVATE_ERRNO
Pull in dl-sysdep.h like every other linux sysdep.h header does when it
wants to use RTLD_PRIVATE_ERRNO.
Diffstat (limited to 'sysdeps/unix/sysv/linux/hppa')
-rw-r--r-- | sysdeps/unix/sysv/linux/hppa/sysdep.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sysdeps/unix/sysv/linux/hppa/sysdep.h b/sysdeps/unix/sysv/linux/hppa/sysdep.h index eab1a229de..ac4781434b 100644 --- a/sysdeps/unix/sysv/linux/hppa/sysdep.h +++ b/sysdeps/unix/sysv/linux/hppa/sysdep.h @@ -21,6 +21,9 @@ #include <asm/unistd.h> #include <sysdeps/generic/sysdep.h> +/* Defines RTLD_PRIVATE_ERRNO. */ +#include <dl-sysdep.h> + /* In order to get __set_errno() definition in INLINE_SYSCALL. */ #ifndef __ASSEMBLER__ #include <errno.h> |