From 5288bf31ee255aafe394304074c1ec6ccb290448 Mon Sep 17 00:00:00 2001 From: Samuel Thibault Date: Thu, 15 Sep 2011 00:08:02 +0200 Subject: Make pthread.h include time.h As required by posix. * include/pthread/pthread.h: Include --- include/pthread/pthread.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/pthread/pthread.h b/include/pthread/pthread.h index 67b8fe4..4dbcb0c 100644 --- a/include/pthread/pthread.h +++ b/include/pthread/pthread.h @@ -48,6 +48,7 @@ #endif #include +#include __BEGIN_DECLS -- cgit v1.2.3 From 75f6fe21205a87d1942492cb34e8aab482008a78 Mon Sep 17 00:00:00 2001 From: Thomas Schwinge Date: Thu, 15 Sep 2011 00:26:24 +0200 Subject: must pull in a NULL definition. Thus, revert a bit of commit 769e2108a0f5fc49eff9f3addbaf5f0646bcb253. * pthread/cthreads-compat.c: Don't #include . --- pthread/cthreads-compat.c | 1 - 1 file changed, 1 deletion(-) diff --git a/pthread/cthreads-compat.c b/pthread/cthreads-compat.c index 799d3a4..e0536ef 100644 --- a/pthread/cthreads-compat.c +++ b/pthread/cthreads-compat.c @@ -19,7 +19,6 @@ #include #include -#include typedef void *cthread_t; typedef void *(*cthread_fn_t) (void *arg); -- cgit v1.2.3