From: Gabriel Corona Date: Tue, 16 Jun 2015 09:46:41 +0000 (+0200) Subject: Add missing headers in xbt_os_thread.c X-Git-Tag: v3_12~590 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/38f8e261e2576fbe3b97fa747abc9257f2b2443b Add missing headers in xbt_os_thread.c --- diff --git a/src/xbt/xbt_os_thread.c b/src/xbt/xbt_os_thread.c index 50a9a4cb63..46a0e7eea4 100644 --- a/src/xbt/xbt_os_thread.c +++ b/src/xbt/xbt_os_thread.c @@ -8,6 +8,15 @@ /* This program is free software; you can redistribute it and/or modify it * under the terms of the license (GNU LGPL) which comes with this package. */ +#if defined(WIN32) +#elif defined(__MACH__) +#include +#include +#include +#else +#include +#endif + #include "internal_config.h" #include "xbt/sysdep.h" #include "xbt/ex.h"