Index: libcfa/src/bits/locks.hfa
===================================================================
--- libcfa/src/bits/locks.hfa	(revision 9aa9126e40385076b70bce81cfd5925a9c8b56ee)
+++ libcfa/src/bits/locks.hfa	(revision a332d432326fef6595b1ca9146278877acdcf0b1)
@@ -10,6 +10,6 @@
 // Created On       : Tue Oct 31 15:14:38 2017
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Fri Mar 30 18:18:13 2018
-// Update Count     : 9
+// Last Modified On : Sat Aug 11 15:42:24 2018
+// Update Count     : 10
 //
 
@@ -50,5 +50,5 @@
 	struct {
 		// Align lock on 128-bit boundary
-		__ALIGN__ volatile _Bool lock;
+		__ALIGN__ volatile bool lock;
 	};
 	#ifdef __CFA_DEBUG__
@@ -79,6 +79,6 @@
 
 	// Lock the spinlock, return false if already acquired
-	static inline _Bool try_lock  ( __spinlock_t & this __cfaabi_dbg_ctx_param2 ) {
-		_Bool result = (this.lock == 0) && (__atomic_test_and_set( &this.lock, __ATOMIC_ACQUIRE ) == 0);
+	static inline bool try_lock  ( __spinlock_t & this __cfaabi_dbg_ctx_param2 ) {
+		bool result = (this.lock == 0) && (__atomic_test_and_set( &this.lock, __ATOMIC_ACQUIRE ) == 0);
 		if( result ) {
 			disable_interrupts();
