diff options
Diffstat (limited to 'libc/sysdeps/linux/common/fdatasync.c')
-rw-r--r-- | libc/sysdeps/linux/common/fdatasync.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/libc/sysdeps/linux/common/fdatasync.c b/libc/sysdeps/linux/common/fdatasync.c index fbac46ae4..c15e47b42 100644 --- a/libc/sysdeps/linux/common/fdatasync.c +++ b/libc/sysdeps/linux/common/fdatasync.c @@ -10,10 +10,8 @@ #include "syscalls.h" #include <unistd.h> -#if defined (__alpha__) -#undef __NR_fdatasync -#define __NR_fdatasync __NR_osf_fdatasync +#if defined __NR_osf_fdatasync +# define __NR_fdatasync __NR_osf_fdatasync #endif _syscall1(int, fdatasync, int, fd); - |