diff options
Diffstat (limited to 'include')
-rw-r--r-- | include/assert.h | 2 | ||||
-rw-r--r-- | include/bits/stdlib-float.h | 2 | ||||
-rw-r--r-- | include/errno.h | 2 | ||||
-rw-r--r-- | include/sys/stat.h | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/include/assert.h b/include/assert.h index d0d9259ab3..abe182fced 100644 --- a/include/assert.h +++ b/include/assert.h @@ -20,7 +20,7 @@ extern void __assert_fail_base (const char *fmt, const char *assertion, const char *function) __THROW __attribute__ ((__noreturn__)); -# if !defined NOT_IN_libc || defined IS_IN_rtld +# if !defined NOT_IN_libc || IS_IN (rtld) hidden_proto (__assert_fail) hidden_proto (__assert_perror_fail) # endif diff --git a/include/bits/stdlib-float.h b/include/bits/stdlib-float.h index d3f5c5b927..346631482d 100644 --- a/include/bits/stdlib-float.h +++ b/include/bits/stdlib-float.h @@ -1,4 +1,4 @@ /* No floating-point inline functions in rtld. */ -#ifndef IS_IN_rtld +#if !IS_IN (rtld) # include <stdlib/bits/stdlib-float.h> #endif diff --git a/include/errno.h b/include/errno.h index 8e60288f50..d650a1545f 100644 --- a/include/errno.h +++ b/include/errno.h @@ -4,7 +4,7 @@ #if defined _ERRNO_H && !defined _ISOMAC && !defined __cplusplus -# ifdef IS_IN_rtld +# if IS_IN (rtld) # include <dl-sysdep.h> # ifndef RTLD_PRIVATE_ERRNO # error "dl-sysdep.h must define RTLD_PRIVATE_ERRNO!" diff --git a/include/sys/stat.h b/include/sys/stat.h index 7a65d608c5..a44fbec465 100644 --- a/include/sys/stat.h +++ b/include/sys/stat.h @@ -12,7 +12,7 @@ extern __mode_t __umask (__mode_t __mask); extern int __mkdir (const char *__path, __mode_t __mode); extern int __mknod (const char *__path, __mode_t __mode, __dev_t __dev); -#if !defined NOT_IN_libc || defined IS_IN_rtld +#if !defined NOT_IN_libc || IS_IN (rtld) hidden_proto (__fxstat) hidden_proto (__fxstat64) hidden_proto (__lxstat) |