diff options
author | Florian Weimer <fweimer@redhat.com> | 2019-06-06 11:24:32 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2019-06-06 11:24:32 +0200 |
commit | 28dd3939221ab26c6774097e9596e30d9753f758 (patch) | |
tree | f4bcb0e6dc1ae91a026f8aa5f741d5bbaf810c85 /sysdeps/unix | |
parent | 0158473d8ff72d97e2163f66dcd8fb627fee4645 (diff) | |
download | glibc-28dd3939221ab26c6774097e9596e30d9753f758.tar glibc-28dd3939221ab26c6774097e9596e30d9753f758.tar.gz glibc-28dd3939221ab26c6774097e9596e30d9753f758.tar.bz2 glibc-28dd3939221ab26c6774097e9596e30d9753f758.zip |
riscv: Do not use __has_include__
The user-visible preprocessor construct is called __has_include.
Diffstat (limited to 'sysdeps/unix')
-rw-r--r-- | sysdeps/unix/sysv/linux/riscv/flush-icache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/riscv/flush-icache.c b/sysdeps/unix/sysv/linux/riscv/flush-icache.c index cd5c400977..f2dfcc50d0 100644 --- a/sysdeps/unix/sysv/linux/riscv/flush-icache.c +++ b/sysdeps/unix/sysv/linux/riscv/flush-icache.c @@ -21,7 +21,7 @@ #include <stdlib.h> #include <atomic.h> #include <sys/cachectl.h> -#if __has_include__ (<asm/syscalls.h>) +#if __has_include (<asm/syscalls.h>) # include <asm/syscalls.h> #else # include <asm/unistd.h> |