repo.or.cz
/
libc-test.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
string test alignment fix by Mahesh Bodapati
[libc-test.git]
/
src
/
regression
/
tls_get_new-dtv_dso.c
blob
eb4be9b1ece57b5a21107520853602b3915300b3
1
__thread
char
v
[
123
];
2
__thread
int
x
=
42
;
3
__thread
long double
y
;
4
5
void
*
f
()
6
{
7
int
i
;
8
for
(
i
=
0
;
i
<
sizeof
v
;
i
++)
9
v
[
i
] =
i
%
16
;
10
return
v
;
11
}
12
void
*
g
() {
return
&
x
;}
13
void
*
h
() {
return
&
y
;}