diff options
author | Jakob Kaivo <jkk@ung.org> | 2020-08-12 20:12:41 -0400 |
---|---|---|
committer | Jakob Kaivo <jkk@ung.org> | 2020-08-12 20:12:41 -0400 |
commit | 0b5079b8723804889f06c6ddbeef8a45c00d7b49 (patch) | |
tree | d76b603c190b7e04529bff99e8085718b4c0a9a8 /src/nonstd/__libc_per_thread.c | |
parent | 0f2704eb90ef2590c75633dc7eb695a63cf2ddf8 (diff) |
finish purging nonstd/
Diffstat (limited to 'src/nonstd/__libc_per_thread.c')
-rw-r--r-- | src/nonstd/__libc_per_thread.c | 14 |
1 files changed, 0 insertions, 14 deletions
diff --git a/src/nonstd/__libc_per_thread.c b/src/nonstd/__libc_per_thread.c deleted file mode 100644 index d487dcad..00000000 --- a/src/nonstd/__libc_per_thread.c +++ /dev/null @@ -1,14 +0,0 @@ -#include "../_nonstd.h" -#include "../locale/_locale.h" -#include "../_perthread.h" - -void *__libc_per_thread(LIBC_INTERNAL variable) -{ - THREAD_LOCAL struct __locale_t locale; - - if (variable == THREAD_LOCALE) { - return &locale; - } - - return (void*)0; -} |