2001-08-20 Ulrich Drepper <drepper@redhat.com>
* misc/error.c (error_tail): Use fputws_unlocked instead of fputws.
* misc/err.c (convert_and_print): Likewise.
* malloc/obstack.c (print_and_abort): Use fprintf instead of two
function calls.
+2001-08-20 Ulrich Drepper <drepper@redhat.com>
+
+ * misc/error.c (error_tail): Use fputws_unlocked instead of fputws.
+ * misc/err.c (convert_and_print): Likewise.
+
+ * malloc/obstack.c (print_and_abort): Use fprintf instead of two
+ function calls.
+
2001-08-20 Martin Schwidefsky <schwidefsky@de.ibm.com>
* sysdeps/unix/sysv/linux/s390/s390-32/sys/ucontext.h: Revert the
__fwprintf (stderr, L"%s\n", _("memory exhausted"));
else
#endif
- {
- fputs (_("memory exhausted"), stderr);
- fputc ('\n', stderr);
- }
+ fprintf (stderr, "%s\n", _("memory exhausted"));
exit (obstack_exit_failure);
}
\f
if (wformat == NULL)
{
- fputws (L"out of memory\n", stderr);
+ fputws_unlocked (L"out of memory\n", stderr);
return;
}
}
if (wmessage == NULL)
{
- fputws (L"out of memory\n", stderr);
+ fputws_unlocked (L"out of memory\n", stderr);
return;
}
}