Index: src/libcfa/concurrency/coroutines
===================================================================
--- src/libcfa/concurrency/coroutines	(revision 8def349b0537df4d0b760ecaa43ce8f6d6fe9e94)
+++ src/libcfa/concurrency/coroutines	(revision 0c92c9f0632273f81f11622ea9a570797b9c7092)
@@ -65,5 +65,5 @@
 
 // Private wrappers for context switch and stack creation
-extern void corCxtSw(coroutine * src, coroutine * dst);
+extern void CoroutineCtxSwitch(coroutine * src, coroutine * dst);
 extern void create_stack( coStack_t * this, unsigned int storageSize );
 
@@ -81,5 +81,5 @@
 		src->name, src, src->last->name, src->last );
 
-	corCxtSw( src, src->last );
+	CoroutineCtxSwitch( src, src->last );
 }
 
@@ -107,5 +107,5 @@
 
       // always done for performance testing
-	corCxtSw( src, dst );
+	CoroutineCtxSwitch( src, dst );
 }
 
