1133066Sdfr/* $FreeBSD$ */
2133066Sdfr
3133066Sdfrextern int __thread yy1;
4133066Sdfrint __thread xx1 = 1;
5133066Sdfrint __thread xx2 = 2;
6133066Sdfrint __thread xxa[10] = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
7133066Sdfr
8133066Sdfrint
9133066Sdfrxxyy()
10133066Sdfr{
11133066Sdfr	return yy1;
12133066Sdfr}
13