Index: uspace/app/tester/float/float1.c
===================================================================
--- uspace/app/tester/float/float1.c	(revision 954c0240b720c64358bccbdcdcb035fdd5a6f347)
+++ uspace/app/tester/float/float1.c	(revision fc10e1b945611fb364f75d69f5864f22ed4a8e84)
@@ -32,5 +32,5 @@
 #include <stdlib.h>
 #include <stddef.h>
-#include <atomic.h>
+#include <stdatomic.h>
 #include <fibril.h>
 #include <fibril_synch.h>
@@ -45,5 +45,5 @@
 
 static FIBRIL_SEMAPHORE_INITIALIZE(threads_finished, 0);
-static atomic_t threads_fault;
+static atomic_int threads_fault;
 
 static errno_t e(void *data)
@@ -60,5 +60,5 @@
 
 		if ((uint32_t) (e * PRECISION) != E_10E8) {
-			atomic_inc(&threads_fault);
+			atomic_fetch_add(&threads_fault, 1);
 			break;
 		}
@@ -71,7 +71,7 @@
 const char *test_float1(void)
 {
-	atomic_count_t total = 0;
+	int total = 0;
 
-	atomic_set(&threads_fault, 0);
+	atomic_store(&threads_fault, 0);
 	fibril_test_spawn_runners(THREADS);
 
@@ -92,10 +92,10 @@
 	TPRINTF("\n");
 
-	for (unsigned int i = 0; i < total; i++) {
-		TPRINTF("Threads left: %" PRIua "\n", total - i);
+	for (int i = 0; i < total; i++) {
+		TPRINTF("Threads left: %d\n", total - i);
 		fibril_semaphore_down(&threads_finished);
 	}
 
-	if (atomic_get(&threads_fault) == 0)
+	if (atomic_load(&threads_fault) == 0)
 		return NULL;
 
