diff options
author | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-09-12 21:52:04 +0000 |
---|---|---|
committer | Thomas Bushnell, BSG <thomas@gnu.org> | 1996-09-12 21:52:04 +0000 |
commit | f33b97f91391579f28d9346967d713345790eaeb (patch) | |
tree | ae0caa1ce664c1aa4867a0af2b660006f1a79900 | |
parent | d0045e79eb6f1ab705668a6efdfafe8b81d1cad8 (diff) | |
download | glibc-f33b97f91391579f28d9346967d713345790eaeb.tar.gz glibc-f33b97f91391579f28d9346967d713345790eaeb.tar.xz glibc-f33b97f91391579f28d9346967d713345790eaeb.zip |
*** empty log message ***
Thu Sep 12 12:33:52 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> * stdio-common/vfprintf.c: Include <libc-lock.h>. * stdio-common/vfscanf.c: Likewise. * sysdeps/mach/libc-lock.h (__libc_cleanup_region_start): New macro. (__libc_cleanup_region_end): New macro. * stdio-common/vfscanf.c (UNLOCK_STREAM) [! USE_IN_LIBIO]: Call __libc_cleanup_region_end, not __libc_cleanup_region_start.
-rw-r--r-- | ChangeLog | 12 | ||||
-rw-r--r-- | stdio-common/vfprintf.c | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog index eeeb620359..4b466de74d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,15 @@ +Thu Sep 12 12:33:52 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu> + + * stdio-common/vfprintf.c: Include <libc-lock.h>. + * stdio-common/vfscanf.c: Likewise. + + * sysdeps/mach/libc-lock.h (__libc_cleanup_region_start): New + macro. + (__libc_cleanup_region_end): New macro. + + * stdio-common/vfscanf.c (UNLOCK_STREAM) [! USE_IN_LIBIO]: Call + __libc_cleanup_region_end, not __libc_cleanup_region_start. + Thu Sep 12 03:35:27 1996 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/i386/Dist: Remove init-first.h. diff --git a/stdio-common/vfprintf.c b/stdio-common/vfprintf.c index f5a1e23ca9..d27bbdbf57 100644 --- a/stdio-common/vfprintf.c +++ b/stdio-common/vfprintf.c @@ -23,6 +23,7 @@ Boston, MA 02111-1307, USA. */ #include <stdlib.h> #include <errno.h> #include <wchar.h> +#include <libc-lock.h> #include "_itoa.h" #include "../locale/localeinfo.h" |