Index: libcfa/src/bits/stack.hfa
===================================================================
--- libcfa/src/bits/stack.hfa	(revision a65cd5e945fecac9d8b11730d6bc465aac99fb4a)
+++ libcfa/src/bits/stack.hfa	(revision 5a0230867be33e5412eec9b87a205ff4cf6cd0a4)
@@ -14,5 +14,5 @@
 	};
 
-	inline {
+	static inline {
 		// wrappers to make Collection have T
 		T & head( Stack(T) & s ) with( s ) {
@@ -70,7 +70,7 @@
 	struct StackIter {
 		inline ColIter;									// Plan 9 inheritance
-	};	
+	};
 
-	inline {
+	static inline {
 		void ?{}( StackIter(T) & si ) with( si ) {
 			((ColIter &)si){};
Index: libcfa/src/concurrency/coroutine.cfa
===================================================================
--- libcfa/src/concurrency/coroutine.cfa	(revision a65cd5e945fecac9d8b11730d6bc465aac99fb4a)
+++ libcfa/src/concurrency/coroutine.cfa	(revision 5a0230867be33e5412eec9b87a205ff4cf6cd0a4)
@@ -81,5 +81,5 @@
 
 // helper for popping from coroutine's ehm buffer
-inline nonlocal_exception * pop_ehm_head( coroutine$ * this ) {
+static nonlocal_exception * pop_ehm_head( coroutine$ * this ) {
     lock( this->ehm_state.buffer_lock __cfaabi_dbg_ctx2 );
     nonlocal_exception * nl_ex = pop_head( this->ehm_state.ehm_buffer );
