diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-03-23 20:42:34 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-03-23 20:42:34 +0000 |
commit | 7392ce9bb41a985cf0cba52cf6b021835ae28563 (patch) | |
tree | 419956e66672a0f13c46bd2639af408fb4051b84 | |
parent | a42195dbe4535234e3896f558dea8d7c839569f4 (diff) | |
download | glibc-7392ce9bb41a985cf0cba52cf6b021835ae28563.tar.gz glibc-7392ce9bb41a985cf0cba52cf6b021835ae28563.tar.xz glibc-7392ce9bb41a985cf0cba52cf6b021835ae28563.zip |
Update.
* stdio-common/tst-cookie.c (cookieseek): Change prototype to follow change for libio.h from 2000-03-10. 2000-03-23 Andreas Jaeger <aj@suse.de>
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | stdio-common/tst-cookie.c | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog index a5bb211a14..4cc3efbf91 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,10 @@ 2000-03-23 Andreas Jaeger <aj@suse.de> + * stdio-common/tst-cookie.c (cookieseek): Change prototype to + follow change for libio.h from 2000-03-10. + +2000-03-23 Andreas Jaeger <aj@suse.de> + * elf/dl-addr.c: Adjust include paths for ldsodefs location change. * elf/dl-debug.c: Likewise. @@ -39,7 +44,7 @@ * sysdeps/generic/ldsodefs.h: ... here. * sysdeps/generic/ldsodefs.h: Add definition for D_PTR. - + * sysdeps/mips/elf/ldsodefs.h: New file. * elf/dl-version.c (match_symbol): Use D_PTR to access relocated diff --git a/stdio-common/tst-cookie.c b/stdio-common/tst-cookie.c index 004ef23b39..dcdabf3230 100644 --- a/stdio-common/tst-cookie.c +++ b/stdio-common/tst-cookie.c @@ -39,7 +39,7 @@ cookiewrite (void *cookie, const char *buf, size_t count) static int cookieseek_called; static int -cookieseek (void *cookie, off_t offset, int whence) +cookieseek (void *cookie, off64_t *offset, int whence) { printf ("`%s' called with cookie %#lx\n", __FUNCTION__, (unsigned long int) cookie); |