summaryrefslogtreecommitdiff
path: root/lib/libc/thread/thrd_current.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/libc/thread/thrd_current.c')
-rw-r--r--lib/libc/thread/thrd_current.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/thread/thrd_current.c b/lib/libc/thread/thrd_current.c
index 86a814da..69a99723 100644
--- a/lib/libc/thread/thrd_current.c
+++ b/lib/libc/thread/thrd_current.c
@@ -3,6 +3,6 @@
thrd_t thrd_current(void)
{
- static _Thread_local struct __thread_self self = { 0 };
+ static struct __thread_self self = { 0 };
return &self;
}