Index: src/examples/thread.c
===================================================================
--- src/examples/thread.c	(revision c49bf5465f82b0c5b63b5ce37d376ccc54de7b56)
+++ src/examples/thread.c	(revision 7fbe45024a0e66932c8f18b15610b0c295b507fa)
@@ -26,5 +26,5 @@
 void ^?{}( MyThread * this ) {}
 
-void co_main(MyThread* this) {
+void main(MyThread* this) {
 	printf("Main called with %p\n", this);
 	printf("Thread value is %d\n", this->value);
@@ -44,5 +44,5 @@
 	printf("Address %p\n", this);
 	printf("handle %p\n", get_thread(this));
-	printf("main %p\n", co_main);
+	printf("main %p\n", main);
 	printf("get_t %p\n", get_thread);
 	printf("invoke %p\n", CtxInvokeThread);
@@ -57,5 +57,5 @@
 	thread(MyThread) thread1;
 
-	printf("Main is %p\n", this_coroutine());	
+	printf("Main is %p\n", this_coroutine());
 
 	printf("First thread created\n");
Index: src/libcfa/concurrency/coroutines
===================================================================
--- src/libcfa/concurrency/coroutines	(revision c49bf5465f82b0c5b63b5ce37d376ccc54de7b56)
+++ src/libcfa/concurrency/coroutines	(revision 7fbe45024a0e66932c8f18b15610b0c295b507fa)
@@ -26,5 +26,5 @@
 // Anything that is resumed is a coroutine.
 trait is_coroutine(dtype T) {
-      void co_main(T * this);
+      void main(T * this);
       coroutine * get_coroutine(T * this);
 };
Index: src/libcfa/concurrency/threads
===================================================================
--- src/libcfa/concurrency/threads	(revision c49bf5465f82b0c5b63b5ce37d376ccc54de7b56)
+++ src/libcfa/concurrency/threads	(revision 7fbe45024a0e66932c8f18b15610b0c295b507fa)
@@ -28,5 +28,5 @@
 // Anything that is resumed is a coroutine.
 trait is_thread(dtype T /*| sized(T)*/) {
-      void co_main(T* this);
+      void main(T* this);
       thread_h* get_thread(T* this);
 	/*void ?{}(T*);
Index: src/tests/coroutine.c
===================================================================
--- src/tests/coroutine.c	(revision c49bf5465f82b0c5b63b5ce37d376ccc54de7b56)
+++ src/tests/coroutine.c	(revision 7fbe45024a0e66932c8f18b15610b0c295b507fa)
@@ -15,5 +15,5 @@
 }
 
-void co_main(Fibonacci* this) {
+void main(Fibonacci* this) {
 #ifdef MORE_DEBUG
       sout | "Starting main of coroutine " | this | endl;
