diff options
author | Richard Henderson <rth@twiddle.net> | 2015-04-06 10:36:44 -0700 |
---|---|---|
committer | Richard Henderson <rth@twiddle.net> | 2015-04-06 10:36:44 -0700 |
commit | cc47c824769425834518e2b8ea89997455d86ca5 (patch) | |
tree | df54f0466bdb1f6e9d69aaeb0d9f3b01cf06dd99 /sysdeps/unix/alpha | |
parent | 9781a370023952383028e07399fd196a889bb2be (diff) | |
download | glibc-cc47c824769425834518e2b8ea89997455d86ca5.tar.gz glibc-cc47c824769425834518e2b8ea89997455d86ca5.tar.xz glibc-cc47c824769425834518e2b8ea89997455d86ca5.zip |
alpha: Unconditionally include dl-sysdep.h in sysdep.h
Fixes a -Wundef error wrt RTLD_PRIVATE_ERRNO.
Diffstat (limited to 'sysdeps/unix/alpha')
-rw-r--r-- | sysdeps/unix/alpha/sysdep.h | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/sysdeps/unix/alpha/sysdep.h b/sysdeps/unix/alpha/sysdep.h index d160214080..ff87793581 100644 --- a/sysdeps/unix/alpha/sysdep.h +++ b/sysdeps/unix/alpha/sysdep.h @@ -17,6 +17,7 @@ <http://www.gnu.org/licenses/>. */ #include <sysdeps/unix/sysdep.h> +#include <dl-sysdep.h> /* Defines RTLD_PRIVATE_ERRNO. */ #ifdef __ASSEMBLER__ @@ -26,11 +27,6 @@ # include <regdef.h> #endif -#if IS_IN (rtld) -# include <dl-sysdep.h> /* Defines RTLD_PRIVATE_ERRNO. */ -#endif - - #define __LABEL(x) x##: #define LEAF(name, framesize) \ |