diff options
author | Jakub Jelinek <jakub@redhat.com> | 2009-05-15 21:00:09 -0700 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2009-05-15 21:00:09 -0700 |
commit | 1f3615a1c97a030bca59f728f998947f852679b9 (patch) | |
tree | 79b139ae70f3b15a707b8231dedc9b583b5262d1 /sysdeps/unix/sysv/linux/fallocate64.c | |
parent | 9e471dad8e173806cbbfb704875d5ae40e36fa34 (diff) | |
download | glibc-1f3615a1c97a030bca59f728f998947f852679b9.tar glibc-1f3615a1c97a030bca59f728f998947f852679b9.tar.gz glibc-1f3615a1c97a030bca59f728f998947f852679b9.tar.bz2 glibc-1f3615a1c97a030bca59f728f998947f852679b9.zip |
Add missing export of fallocate64 on 32-bit platforms.
Due to a pasto the fallocate64 interface, introduced in glibc 2.10,
isn't exported for 32-bit Linux platforms. It is too late for this
now so exported them for glibc 2.11.
Diffstat (limited to 'sysdeps/unix/sysv/linux/fallocate64.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/fallocate64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sysdeps/unix/sysv/linux/fallocate64.c b/sysdeps/unix/sysv/linux/fallocate64.c index ebcaf671b3..751a7b2275 100644 --- a/sysdeps/unix/sysv/linux/fallocate64.c +++ b/sysdeps/unix/sysv/linux/fallocate64.c @@ -23,7 +23,7 @@ /* Reserve storage for the data of the file associated with FD. */ int -__fallocate64_l64 (int fd, int mode, __off64_t offset, __off64_t len) +fallocate64 (int fd, int mode, __off64_t offset, __off64_t len) { #ifdef __NR_fallocate return INLINE_SYSCALL (fallocate, 6, fd, mode, |