diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-08-19 20:57:48 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-08-19 20:57:48 +0000 |
commit | e5cd813b4321685f7611fe1031ae1205c6a1a86f (patch) | |
tree | c5e353c4d68c45b14cf01dc54ebd23ee19841221 /sysdeps/unix/sysv/linux/llseek.c | |
parent | 6229c88e862c624e41129cf550cbc6d98085d23c (diff) | |
download | glibc-e5cd813b4321685f7611fe1031ae1205c6a1a86f.tar.gz glibc-e5cd813b4321685f7611fe1031ae1205c6a1a86f.tar.xz glibc-e5cd813b4321685f7611fe1031ae1205c6a1a86f.zip |
Update.
* dirent/Makefile (routines): Add getdents64. * sysdeps/unix/sysv/linux/Makefile [dirent] (sysdep_routines): Remove getdents64. * dirent/dirent.h: Redirect getdirentries to getdirentries64 if compiled with _FILE_OFFSET_BITS=64. * sysdeps/generic/getdents64.c: New file. * sysdeps/unix/sysv/linux/getdirentries.c: Also redefine off_t and __lseek for getdirentries64 definition. * sysdeps/unix/sysv/linux/llseek.c: Make __lseek64 a strong alias. * sysdeps/unix/sysv/linux/sys/sendfile.h: Don't allow use with _FILE_OFFSET_BITS=64.
Diffstat (limited to 'sysdeps/unix/sysv/linux/llseek.c')
-rw-r--r-- | sysdeps/unix/sysv/linux/llseek.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sysdeps/unix/sysv/linux/llseek.c b/sysdeps/unix/sysv/linux/llseek.c index 466df377c8..a266a79b2a 100644 --- a/sysdeps/unix/sysv/linux/llseek.c +++ b/sysdeps/unix/sysv/linux/llseek.c @@ -1,5 +1,5 @@ /* Long-long seek operation. - Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc. + Copyright (C) 1996, 1997, 1998, 1999 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 @@ -37,5 +37,5 @@ __llseek (int fd, loff_t offset, int whence) &result, whence) ?: result); } weak_alias (__llseek, llseek) -weak_alias (__llseek, __lseek64) +strong_alias (__llseek, __lseek64) weak_alias (__llseek, lseek64) |