From: Roland McGrath Date: Tue, 5 Feb 2013 19:38:14 +0000 (-0800) Subject: Fix aliases in stub lseek. X-Git-Tag: upstream/2.30~9557 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=b2e25af00c4b6268624a06472477112fc015e7d8;p=external%2Fglibc.git Fix aliases in stub lseek. --- diff --git a/ChangeLog b/ChangeLog index 9c97e4b..1661df9 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2013-02-05 Roland McGrath + * io/lseek.c (__lseek): Rename to __libc_lseek. + Define __lseek as an alias. + * sysdeps/generic/malloc-sysdep.h: Include and . 2013-02-04 Carlos O'Donell diff --git a/io/lseek.c b/io/lseek.c index b65c50d..63cd75f 100644 --- a/io/lseek.c +++ b/io/lseek.c @@ -21,7 +21,7 @@ /* Seek to OFFSET on FD, starting from WHENCE. */ off_t -__lseek (fd, offset, whence) +__libc_lseek (fd, offset, whence) int fd; off_t offset; int whence; @@ -45,7 +45,8 @@ __lseek (fd, offset, whence) __set_errno (ENOSYS); return -1; } +weak_alias (__libc_lseek, __lseek) +weak_alias (__libc_lseek, lseek) stub_warning (lseek) -libc_hidden_def (__lseek) -weak_alias (__lseek, lseek) +libc_hidden_def (__lseek)