mirror of
https://sourceware.org/git/glibc.git
synced 2025-07-28 00:21:52 +03:00
Use IS_IN internally only
This change is only useful for the conformance tests since the headers changed are not installed. The conformance tests fail due to IS_IN not being defined, so wrap it with a check to make sure that _ISOMAC is defined. * include/bits/stdlib-float.h: Use IS_IN only if _ISOMAC is defined. * include/mqueue.h: Likewise. * include/stdlib.h: Likewise.
This commit is contained in:
@ -1,7 +1,9 @@
|
||||
#include <rt/mqueue.h>
|
||||
|
||||
#if IS_IN (librt)
|
||||
#ifndef _ISOMAC
|
||||
# if IS_IN (librt)
|
||||
hidden_proto (mq_timedsend)
|
||||
hidden_proto (mq_timedreceive)
|
||||
hidden_proto (mq_setattr)
|
||||
# endif
|
||||
#endif
|
||||
|
Reference in New Issue
Block a user