glibc/stdio-common/bug15.c
Ulrich Drepper 7ba7c8291a Update.
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.
2003-01-30 20:26:38 +00:00

11 lines
163 B
C

#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;
}