glibc/elf/tst-tls12.c
Ulrich Drepper 3ce1f29594 Cleanup of configuration options
Make several tool features mandatory and simplify the code.
2011-09-10 14:34:15 -04:00

18 lines
230 B
C

#include "tst-tls10.h"
#define CHECK(N, S) \
p = &a##N; \
if (p->a != S || p->b != S + 1 || p->c != S + 2) \
abort ()
int
main (void)
{
struct A *p;
check1 ();
CHECK (1, 4);
CHECK (2, 7);
exit (0);
}