diff options
author | Ulrich Drepper <drepper@redhat.com> | 2005-01-06 00:42:22 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2005-01-06 00:42:22 +0000 |
commit | 1e7cceb99ec29742d8d07abfaa39718b3aed65a1 (patch) | |
tree | fc794cb1e516284886951adf721f26af93b23098 /stdio-common | |
parent | 6c4b3f16079c771e92d2e66b3738829d5ccdb55e (diff) | |
download | glibc-1e7cceb99ec29742d8d07abfaa39718b3aed65a1.tar glibc-1e7cceb99ec29742d8d07abfaa39718b3aed65a1.tar.gz glibc-1e7cceb99ec29742d8d07abfaa39718b3aed65a1.tar.bz2 glibc-1e7cceb99ec29742d8d07abfaa39718b3aed65a1.zip |
Update.
* libio/iofopncook.c (_IO_cookie_seekoff): Define. Mark offset as
invalid to disable optimizations in fileops which won't work here.
(_IO_cookie_jumps): Use it.
(_IO_old_cookie_jumps): Likewise.
* libio/fmemopen.c (fmemopen_seek): Result must be returned in *P,
not the return value.
* stdio-common/Makefile (tests): Add tst-fmemopen2.
* stdio-common/tst-fmemopen2.c: New file.
Diffstat (limited to 'stdio-common')
-rw-r--r-- | stdio-common/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/stdio-common/Makefile b/stdio-common/Makefile index 3a66f1d021..2e797e4dfe 100644 --- a/stdio-common/Makefile +++ b/stdio-common/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-2002, 2003, 2004 Free Software Foundation, Inc. +# Copyright (C) 1991-2002, 2003, 2004, 2005 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 @@ -53,7 +53,7 @@ tests := tstscanf test_rdwr test-popen tstgetln test-fseek \ scanf11 scanf12 tst-tmpnam tst-cookie tst-obprintf tst-sscanf \ tst-swprintf tst-fseek tst-fmemopen test-vfprintf tst-gets \ tst-perror tst-sprintf tst-rndseek tst-fdopen tst-fphex bug14 bug15 \ - tst-popen tst-unlockedio + tst-popen tst-unlockedio tst-fmemopen2 test-srcs = tst-unbputc tst-printf |