S390: Ifunc resolver macro for vector instructions.
[glibc.git] / elf / tst-tls19mod1.c
blob2790097ae5f7b0f8497eb08fa6f09e3241ec77e1
1 #include <stdio.h>
3 extern int bar (void);
4 extern int baz (void);
6 int
7 foo (void)
9 int v1 = bar ();
10 int v2 = baz ();
12 printf ("bar=%d, baz=%d\n", v1, v2);
14 return v1 != 666 || v2 != 42;