Index: libcfa/src/concurrency/coroutine.hfa
===================================================================
--- libcfa/src/concurrency/coroutine.hfa	(revision 604d77bb37550e742cd5552fdf387993a579cf20)
+++ libcfa/src/concurrency/coroutine.hfa	(revision 92d41a4af1542b1fcfd3bacde48933e4c8519366)
@@ -46,5 +46,5 @@
 //-----------------------------------------------------------------------------
 // Public coroutine API
-static inline void suspend();
+static inline void suspend(void);
 
 forall(dtype T | is_coroutine(T))
@@ -71,5 +71,5 @@
 
 // Suspend implementation inlined for performance
-static inline void suspend() {
+static inline void suspend(void) {
 	// optimization : read TLS once and reuse it
 	// Safety note: this is preemption safe since if
