Index: tests/concurrent/lockfree_stack.cfa
===================================================================
--- tests/concurrent/lockfree_stack.cfa	(revision 8a919cfec5f277378c3bc7e5d16717f7d44058c6)
+++ tests/concurrent/lockfree_stack.cfa	(revision 687b663f6ff1064b49dd90edc1954e54108c791c)
@@ -10,6 +10,6 @@
 // Created On       : Thu May 25 15:36:50 2023
 // Last Modified By : Peter A. Buhr
-// Last Modified On : Thu May 25 16:20:23 2023
-// Update Count     : 2
+// Last Modified On : Fri May 26 08:08:47 2023
+// Update Count     : 4
 // 
 
@@ -24,5 +24,9 @@
 		uintptr_t count;								// count each push
 	};
+	#if defined( __SIZEOF_INT128__ )
 	__int128 atom;										// gcc, 128-bit integer
+	#else
+	int64_t atom;
+	#endif // __SIZEOF_INT128__
 } __attribute__(( aligned( 16 ) ));
 
