Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 274269 | Differences between
and this patch

Collapse All | Expand All

(-)a/sysdeps/unix/sysv/linux/i386/fallocate.c (+4 lines)
Lines 28-32 extern int __call_fallocate (int fd, int mode, __off64_t offset, __off64_t len) Link Here
28
int
28
int
29
fallocate (int fd, int mode, __off_t offset, __off_t len)
29
fallocate (int fd, int mode, __off_t offset, __off_t len)
30
{
30
{
31
#ifdef __NR_fallocate
31
  return __call_fallocate (fd, mode, offset, len);
32
  return __call_fallocate (fd, mode, offset, len);
33
#else
34
  return internal_fallocate (fd, offset, len);
35
#endif
32
}
36
}
(-)a/sysdeps/unix/sysv/linux/i386/fallocate64.c (+4 lines)
Lines 28-32 extern int __call_fallocate (int fd, int mode, __off64_t offset, __off64_t len) Link Here
28
int
28
int
29
fallocate64 (int fd, int mode, __off64_t offset, __off64_t len)
29
fallocate64 (int fd, int mode, __off64_t offset, __off64_t len)
30
{
30
{
31
#ifdef __NR_fallocate
31
  return __call_fallocate (fd, mode, offset, len);
32
  return __call_fallocate (fd, mode, offset, len);
33
#else
34
  return internal_fallocate64 (fd, offset, len);
35
#endif
32
}
36
}

Return to bug 274269