From: Samuel Thibault Date: Sun, 9 Feb 2020 16:41:24 +0000 (+0000) Subject: htl: Avoid check-installed-headers looking at inlines X-Git-Tag: glibc-2.32~720 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e622ce98c58b61e1c61dc7ff0c8b3f9ba23c3d9a;p=thirdparty%2Fglibc.git htl: Avoid check-installed-headers looking at inlines --- diff --git a/sysdeps/htl/include/pthread.h b/sysdeps/htl/include/pthread.h index 173b1eb08db..a9c0e58b002 100644 --- a/sysdeps/htl/include/pthread.h +++ b/sysdeps/htl/include/pthread.h @@ -1,7 +1,8 @@ #ifndef _PTHREAD_H #include_next -#if defined __USE_EXTERN_INLINES && defined _LIBC && !IS_IN (libsupport) -# include +#ifndef _ISOMAC +# if defined __USE_EXTERN_INLINES && defined _LIBC && !IS_IN (libsupport) +# include __extern_inline int pthread_spin_destroy (pthread_spinlock_t *__lock) @@ -32,5 +33,6 @@ pthread_spin_unlock (pthread_spinlock_t *__lock) { return __pthread_spin_unlock (__lock); } +# endif #endif #endif