From 0e4d33b939d8ca3b5408b3ed5fe0df9306d16698 Mon Sep 17 00:00:00 2001 From: Bernhard Reutner-Fischer Date: Mon, 29 Sep 2008 11:36:48 +0000 Subject: - now passes all LTP tests --- libc/sysdeps/linux/i386/posix_fadvise.c | 36 --------------------------------- 1 file changed, 36 deletions(-) delete mode 100644 libc/sysdeps/linux/i386/posix_fadvise.c (limited to 'libc/sysdeps/linux/i386/posix_fadvise.c') diff --git a/libc/sysdeps/linux/i386/posix_fadvise.c b/libc/sysdeps/linux/i386/posix_fadvise.c deleted file mode 100644 index 25373bcd5..000000000 --- a/libc/sysdeps/linux/i386/posix_fadvise.c +++ /dev/null @@ -1,36 +0,0 @@ -/* vi: set sw=4 ts=4: */ -/* - * posix_fadvise() for uClibc - * - * Copyright (C) 2008 Bernhard Reutner-Fischer - * - * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball. - */ - -#include -#if defined __USE_GNU -#include - - -#if defined __NR_fadvise64_64 || defined __NR_fadvise64 -extern int __libc_posix_fadvise64 (int, __off64_t, __off64_t, int ) __THROW; - -libc_hidden_proto(__libc_posix_fadvise64) -libc_hidden_proto(posix_fadvise) -int posix_fadvise(int fd, off_t offset, off_t len, int advice) -{ - if (__libc_posix_fadvise64(fd, offset, len, advice) != 0) - return errno; - return 0; -} -libc_hidden_def(posix_fadvise) -#elif defined __UCLIBC_HAS_STUBS__ -libc_hidden_proto(posix_fadvise) -int posix_fadvise(int fd attribute_unused, off_t offset attribute_unused, - off_t len attribute_unused, int advice attribute_unused) -{ - return ENOSYS; -} -libc_hidden_def(posix_fadvise) -#endif -#endif -- cgit v1.2.3