1
0
mirror of https://sourceware.org/git/glibc.git synced 2025-12-08 02:02:23 +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:
Siddhesh Poyarekar
2014-11-24 15:24:34 +05:30
parent 4f41c682f3
commit 7a9ebfa159
3 changed files with 14 additions and 3 deletions

View File

@@ -1,4 +1,8 @@
/* No floating-point inline functions in rtld. */
#if !IS_IN (rtld)
/* No floating-point inline functions in rtld and for the conform tests. */
#ifdef _ISOMAC
# include <stdlib/bits/stdlib-float.h>
#else
# if !IS_IN (rtld)
# include <stdlib/bits/stdlib-float.h>
# endif
#endif