diff options
Diffstat (limited to 'lib/libc/thread')
| -rw-r--r-- | lib/libc/thread/thrd_current.c | 2 |
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; } |
