* sysdeps/generic/posix_fadvise.c (posix_fadvise): Adjust prototype.
authorAndreas Jaeger <aj@suse.de>
Sat, 16 Aug 2003 09:17:57 +0000 (09:17 +0000)
committerAndreas Jaeger <aj@suse.de>
Sat, 16 Aug 2003 09:17:57 +0000 (09:17 +0000)
* sysdeps/generic/posix_fadvise64.c (posix_fadvise64): Likewise.
2003-08-16  Andreas Jaeger  <aj@suse.de>

* sysdeps/generic/posix_fadvise.c (posix_fadvise): Adjust prototype.
* sysdeps/generic/posix_fadvise64.c (posix_fadvise64): Likewise.

ChangeLog
sysdeps/generic/posix_fadvise.c
sysdeps/generic/posix_fadvise64.c

index f2bc208..acc25e7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2003-08-16  Andreas Jaeger  <aj@suse.de>
+
+       * sysdeps/generic/posix_fadvise.c (posix_fadvise): Adjust prototype.
+       * sysdeps/generic/posix_fadvise64.c (posix_fadvise64): Likewise.
+
 2003-08-15  Ulrich Drepper  <drepper@redhat.com>
 
        * io/fcntl.h (posix_fadvise64): Change type of third parameter to
index 83847a9..65e2cc4 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.
+/* Copyright (C) 2000, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -23,7 +23,7 @@
    respect to the file associated with FD.  */
 
 int
-posix_fadvise (int fd, __off_t offset, size_t len, int advise)
+posix_fadvise (int fd, __off_t offset, __off_t len, int advise)
 {
   __set_errno (ENOSYS);
   return -1;
index d866a49..44efd35 100644 (file)
@@ -1,4 +1,4 @@
-/* Copyright (C) 2000 Free Software Foundation, Inc.
+/* Copyright (C) 2000, 2003 Free Software Foundation, Inc.
    This file is part of the GNU C Library.
 
    The GNU C Library is free software; you can redistribute it and/or
@@ -23,7 +23,7 @@
    respect to the file associated with FD.  */
 
 int
-posix_fadvise64 (int fd, __off64_t offset, size_t len, int advise)
+posix_fadvise64 (int fd, __off64_t offset, __off64_t len, int advise)
 {
   __set_errno (ENOSYS);
   return -1;