1
0
mirror of https://sourceware.org/git/glibc.git synced 2026-01-06 11:51:29 +03:00
2003-01-30  Jakub Jelinek  <jakub@redhat.com>

	* sysdeps/powerpc/powerpc32/dl-machine.h (elf_machine_lazy_rel):
	Move to RESOLVE protected part of the header.
	* sysdeps/powerpc/powerpc64/dl-machine.h (elf_machine_lazy_rel):
	Likewise.

2003-01-30  Ulrich Drepper  <drepper@redhat.com>

	* stdio-common/Makefile (tests): Add bug15.
	(bug15-ENV): Define.
	* stdio-common/bug15.c: New file.
This commit is contained in:
Ulrich Drepper
2003-01-30 20:26:38 +00:00
parent 886d5973b7
commit 7ba7c8291a
6 changed files with 44 additions and 19 deletions

10
stdio-common/bug15.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdio.h>
#include <locale.h>
int
main (void)
{
char buf[10];
setlocale (LC_ALL, "vi_VN.TCVN-5712");
return sprintf (buf, "%.*s", 2, "vi") != 2;
}