From 675d62ac876ffe4719580d45b8c9469934ccf6d7 Mon Sep 17 00:00:00 2001 From: "\"Steven J. Hill\"" Date: Tue, 28 Feb 2006 03:18:23 +0000 Subject: Merge from trunk. --- libc/sysdeps/linux/common/fdatasync.c | 10 ++++------ 1 file changed, 4 insertions(+), 6 deletions(-) (limited to 'libc/sysdeps/linux/common/fdatasync.c') diff --git a/libc/sysdeps/linux/common/fdatasync.c b/libc/sysdeps/linux/common/fdatasync.c index d98d9da5e..c15e47b42 100644 --- a/libc/sysdeps/linux/common/fdatasync.c +++ b/libc/sysdeps/linux/common/fdatasync.c @@ -2,18 +2,16 @@ /* * fdatasync() for uClibc * - * Copyright (C) 2000-2004 by Erik Andersen + * Copyright (C) 2000-2006 Erik Andersen * - * GNU Library General Public License (LGPL) version 2 or later. + * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. */ #include "syscalls.h" #include -#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); - -- cgit v1.2.3