fix float.h api test: FLT_ROUNDS is not int const expr
[libc-test] / src / functional / tls_init_dso.c
1 static char buf[] = "foobar";
2 __thread char *tls = buf;
3
4 char *gettls()
5 {
6         return tls;
7 }
8