From d8d19f4d46284d5b6124710a5235b6fe090c013f Mon Sep 17 00:00:00 2001
From: Rich Felker <dalias@aerifal.cx>
Date: Sat, 12 Mar 2011 21:54:19 -0500
Subject: [PATCH] pthread.h needs clockid_t

actually it gets this from time.h if _POSIX_C_SOURCE or any other
feature test macros are defined, but it breaks if they're not.
---
 include/pthread.h | 1 +
 1 file changed, 1 insertion(+)

diff --git a/include/pthread.h b/include/pthread.h
index a47406aa..d40002e6 100644
--- a/include/pthread.h
+++ b/include/pthread.h
@@ -5,6 +5,7 @@ extern "C" {
 #endif
 
 #define __NEED_time_t
+#define __NEED_clockid_t
 #define __NEED_struct_timespec
 #define __NEED_sigset_t
 #define __NEED_pthread_t
-- 
2.40.0