7ba7c8291a
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.
11 lines
163 B
C
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;
|
|
}
|