diff options
author | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-09-01 22:55:04 +0530 |
---|---|---|
committer | Siddhesh Poyarekar <siddhesh@redhat.com> | 2014-11-05 16:18:54 +0530 |
commit | 06195e5139c9136ed81c299562395a9f9f9f64df (patch) | |
tree | fcc2a1aab6fb82d21526ade637105e4c70d5a906 /include/bits/stdlib-float.h | |
parent | 0c2927d48f779aec107def1e3ee47adf54fefc8d (diff) | |
download | glibc-siddhesh/is_in_module.tar.gz |
Use IS_IN internally onlysiddhesh/is_in_module
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.
Diffstat (limited to 'include/bits/stdlib-float.h')
-rw-r--r-- | include/bits/stdlib-float.h | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/include/bits/stdlib-float.h b/include/bits/stdlib-float.h index 346631482d..54ab571981 100644 --- a/include/bits/stdlib-float.h +++ b/include/bits/stdlib-float.h @@ -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 |