From 11c531e21de9c417166da934898ea7225a758fdf Mon Sep 17 00:00:00 2001 From: Rich Felker Date: Mon, 30 May 2011 01:41:23 -0400 Subject: implement uselocale function (minimal) --- src/internal/pthread_impl.h | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/internal/pthread_impl.h') diff --git a/src/internal/pthread_impl.h b/src/internal/pthread_impl.h index 615713c7..219bf006 100644 --- a/src/internal/pthread_impl.h +++ b/src/internal/pthread_impl.h @@ -12,6 +12,7 @@ #include #include #include +#include #include "libc.h" #include "syscall.h" #include "atomic.h" @@ -44,6 +45,7 @@ struct pthread { } robust_list; int unblock_cancel; int delete_timer; + locale_t locale; }; struct __timer { -- cgit v1.2.1