diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-20 00:16:40 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2018-04-20 00:16:40 +0200 |
commit | 5dbfe13b35195cd1292b81787a0ef58db828c7d5 (patch) | |
tree | 39f8efa28d1d42a3c8d76f13648d737d0c47cac8 /sysdeps | |
parent | a279b8ed9ba5cb4960e685d2e28d1c4997f760d1 (diff) | |
download | glibc-5dbfe13b35195cd1292b81787a0ef58db828c7d5.zip glibc-5dbfe13b35195cd1292b81787a0ef58db828c7d5.tar.gz glibc-5dbfe13b35195cd1292b81787a0ef58db828c7d5.tar.bz2 |
hurd: Fix hurd installed headers test
* sysdeps/hurd/include/hurd.h [!_ISOMAC]: Do not declare libc hidden
prototypes.
* sysdeps/hurd/include/hurd/fd.h [!_ISOMAC]: Likewise.
* sysdeps/hurd/include/hurd/signal.h [!_ISOMAC]: Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/hurd/include/hurd.h | 2 | ||||
-rw-r--r-- | sysdeps/hurd/include/hurd/fd.h | 4 | ||||
-rw-r--r-- | sysdeps/hurd/include/hurd/signal.h | 2 |
3 files changed, 7 insertions, 1 deletions
diff --git a/sysdeps/hurd/include/hurd.h b/sysdeps/hurd/include/hurd.h index f740e9d..d29f580 100644 --- a/sysdeps/hurd/include/hurd.h +++ b/sysdeps/hurd/include/hurd.h @@ -1,5 +1,7 @@ #ifndef _HURD_H #include_next <hurd.h> +#ifndef _ISOMAC libc_hidden_proto (_hurd_exec_paths) libc_hidden_proto (_hurd_init) #endif +#endif diff --git a/sysdeps/hurd/include/hurd/fd.h b/sysdeps/hurd/include/hurd/fd.h index 643454f..1f3ac38 100644 --- a/sysdeps/hurd/include/hurd/fd.h +++ b/sysdeps/hurd/include/hurd/fd.h @@ -1,10 +1,12 @@ #ifndef _HURD_FD_H #include_next <hurd/fd.h> +#ifndef _ISOMAC libc_hidden_proto (_hurd_intern_fd) libc_hidden_proto (_hurd_fd_error) libc_hidden_proto (_hurd_fd_error_signal) -#ifdef _HURD_FD_H_HIDDEN_DEF +# ifdef _HURD_FD_H_HIDDEN_DEF libc_hidden_def (_hurd_fd_error) libc_hidden_def (_hurd_fd_error_signal) +# endif #endif #endif diff --git a/sysdeps/hurd/include/hurd/signal.h b/sysdeps/hurd/include/hurd/signal.h index f3185f9..1cb0ada 100644 --- a/sysdeps/hurd/include/hurd/signal.h +++ b/sysdeps/hurd/include/hurd/signal.h @@ -1,7 +1,9 @@ #ifndef _HURD_SIGNAL_H #include_next <hurd/signal.h> +#ifndef _ISOMAC libc_hidden_proto (_hurd_exception2signal) libc_hidden_proto (_hurd_intr_rpc_mach_msg) libc_hidden_proto (_hurd_thread_sigstate) libc_hidden_proto (_hurd_raise_signal) #endif +#endif |