summaryrefslogtreecommitdiff
path: root/libc/sysdeps/linux/common/fdatasync.c
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2006-01-18 12:10:22 +0000
committerMike Frysinger <vapier@gentoo.org>2006-01-18 12:10:22 +0000
commit9f3eba863e386e2c604313c99f1da37d7cfdadea (patch)
tree77712a460380afd1b9ad450d1e6db359fb619326 /libc/sysdeps/linux/common/fdatasync.c
parent56c3fad78406bd5ea1142b755c81feee71b1987e (diff)
get rid of arch specific checks
Diffstat (limited to 'libc/sysdeps/linux/common/fdatasync.c')
-rw-r--r--libc/sysdeps/linux/common/fdatasync.c6
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);
-