Index: libcfa/src/concurrency/coroutine.cfa
===================================================================
--- libcfa/src/concurrency/coroutine.cfa	(revision 6f121b8319d9f9ac95e57b58eb4e9e0faddb194e)
+++ libcfa/src/concurrency/coroutine.cfa	(revision ada0246da4815f49ee693b2ef8f8722d8e94d54e)
@@ -10,6 +10,6 @@
 // Created On       : Mon Nov 28 12:27:26 2016
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Feb  4 12:29:25 2020
-// Update Count     : 16
+// Last Modified On : Tue May 26 22:06:09 2020
+// Update Count     : 21
 //
 
@@ -18,5 +18,4 @@
 #include "coroutine.hfa"
 
-extern "C" {
 #include <stddef.h>
 #include <malloc.h>
@@ -24,9 +23,10 @@
 #include <string.h>
 #include <unistd.h>
-// use this define to make unwind.h play nice, definetely a hack
+#include <sys/mman.h>									// mprotect
+extern "C" {
+// use this define to make unwind.h play nice, definitely a hack
 #define HIDE_EXPORTS
 #include <unwind.h>
 #undef HIDE_EXPORTS
-#include <sys/mman.h>
 }
 
Index: libcfa/src/concurrency/kernel.cfa
===================================================================
--- libcfa/src/concurrency/kernel.cfa	(revision 6f121b8319d9f9ac95e57b58eb4e9e0faddb194e)
+++ libcfa/src/concurrency/kernel.cfa	(revision ada0246da4815f49ee693b2ef8f8722d8e94d54e)
@@ -10,6 +10,6 @@
 // Created On       : Tue Jan 17 12:27:26 2017
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Tue Feb  4 13:03:15 2020
-// Update Count     : 58
+// Last Modified On : Tue May 26 22:05:19 2020
+// Update Count     : 59
 //
 
@@ -21,12 +21,12 @@
 #include <errno.h>
 #include <string.h>
-extern "C" {
 #include <stdio.h>
 #include <fenv.h>
-#include <sys/resource.h>
 #include <signal.h>
 #include <unistd.h>
 #include <limits.h>										// PTHREAD_STACK_MIN
 #include <sys/mman.h>									// mprotect
+extern "C" {
+#include <sys/resource.h>
 }
 
