diff options
Diffstat (limited to 'libc/sysdeps/linux/mips/cacheflush.c')
-rw-r--r-- | libc/sysdeps/linux/mips/cacheflush.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/libc/sysdeps/linux/mips/cacheflush.c b/libc/sysdeps/linux/mips/cacheflush.c index cd23e98d0..f99c58171 100644 --- a/libc/sysdeps/linux/mips/cacheflush.c +++ b/libc/sysdeps/linux/mips/cacheflush.c @@ -20,7 +20,11 @@ #include <unistd.h> #include <sys/syscall.h> +#ifdef __NR_cacheflush _syscall3(int, cacheflush, void *, addr, const int, nbytes, const int, op); strong_alias(cacheflush, _flush_cache) -_syscall3(int, cachectl, void *, addr, const int, nbytes, const int, op); +#endif +#ifdef __NR_cachectl +_syscall3(int, cachectl, void *, addr, const int, nbytes, const int, op); +#endif |