aboutsummaryrefslogtreecommitdiff
path: root/sysdeps/generic/posix_fallocate.c
diff options
context:
space:
mode:
Diffstat (limited to 'sysdeps/generic/posix_fallocate.c')
-rw-r--r--sysdeps/generic/posix_fallocate.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/generic/posix_fallocate.c b/sysdeps/generic/posix_fallocate.c
index 2243a458e5..218b4adbe3 100644
--- a/sysdeps/generic/posix_fallocate.c
+++ b/sysdeps/generic/posix_fallocate.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
@@ -22,7 +22,7 @@
/* Reserve storage for the data of the file associated with FD. */
int
-posix_fallocate (int fd, __off_t offset, size_t len)
+posix_fallocate (int fd, __off_t offset, __off_t len)
{
__set_errno (ENOSYS);
return -1;