Index: libcfa/src/concurrency/coroutine.hfa
===================================================================
--- libcfa/src/concurrency/coroutine.hfa	(revision 17a1b2182301e39b5769acd3251de92e8c34df40)
+++ libcfa/src/concurrency/coroutine.hfa	(revision 1528a2cb2c9975b91dbf801e17f460d20448a579)
@@ -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
