repo.or.cz
/
glibc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Remove unused macros from i386 lowlevellock.h.
[glibc.git]
/
elf
/
tst-tls12.c
blob
8093894b9355982ca47e6ce7c29a23841eae88a2
1
#include
"tst-tls10.h"
2
3
#define CHECK(N, S) \
4
p = &a##N; \
5
if (p->a != S || p->b != S + 1 || p->c != S + 2) \
6
abort ()
7
8
static int
9
do_test
(
void
)
10
{
11
struct
A
*
p
;
12
check1
();
13
CHECK
(
1
,
4
);
14
CHECK
(
2
,
7
);
15
16
exit
(
0
);
17
}
18
19
#define TEST_FUNCTION do_test ()
20
#include
"../test-skeleton.c"