summaryrefslogtreecommitdiff
path: root/libphobos/libdruntime/gcc/gthread.d
diff options
context:
space:
mode:
Diffstat (limited to 'libphobos/libdruntime/gcc/gthread.d')
-rw-r--r--libphobos/libdruntime/gcc/gthread.d6
1 files changed, 4 insertions, 2 deletions
diff --git a/libphobos/libdruntime/gcc/gthread.d b/libphobos/libdruntime/gcc/gthread.d
index ef35a3c27ec..5003637b9ea 100644
--- a/libphobos/libdruntime/gcc/gthread.d
+++ b/libphobos/libdruntime/gcc/gthread.d
@@ -86,10 +86,12 @@ else static if (GNU_Thread_Model == ThreadModel.Single)
}
else static if (GNU_Thread_Model == ThreadModel.Win32)
{
+ import core.stdc.config;
+
struct __gthread_once_t
{
- INT done;
- LONG started;
+ int done;
+ c_long started;
}
int __gthr_win32_key_create(__gthread_key_t* keyp, GthreadDestroyFn dtor);