Fix aliases in stub lseek.

This commit is contained in:
Roland McGrath 2013-02-05 11:38:14 -08:00
parent eab55bfb14
commit b2e25af00c
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,8 @@
2013-02-05 Roland McGrath <roland@hack.frob.com>
* io/lseek.c (__lseek): Rename to __libc_lseek.
Define __lseek as an alias.
* sysdeps/generic/malloc-sysdep.h: Include <stdbool.h> and <unistd.h>.
2013-02-04 Carlos O'Donell <carlos@redhat.com>

View File

@ -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)