fix void* pointer arithmetic in string_strchr.c
[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