mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 22:30:07 +00:00
7a9ebfa159
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.
9 lines
211 B
C
9 lines
211 B
C
/* 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
|