diff options
Diffstat (limited to 'sysdeps/generic/posix_fadvise.c')
-rw-r--r-- | sysdeps/generic/posix_fadvise.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/posix_fadvise.c b/sysdeps/generic/posix_fadvise.c index 83847a900a..65e2cc4c2c 100644 --- a/sysdeps/generic/posix_fadvise.c +++ b/sysdeps/generic/posix_fadvise.c @@ -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; |