Index: uspace/lib/c/test/fibril/exit_hook.c
===================================================================
--- uspace/lib/c/test/fibril/exit_hook.c	(revision 7064e71fb59500fe3cad795c283fcc654d8cec8b)
+++ uspace/lib/c/test/fibril/exit_hook.c	(revision 25ee7ec5603baddad57692682d7109d5a7f9c0c8)
@@ -36,46 +36,48 @@
 static int value;
 
-static void exit_hook(void) {
-    value = 5;
+static void exit_hook(void)
+{
+	value = 5;
 }
 
-static errno_t fibril_basic(void* _arg) {
-    fibril_add_exit_hook(exit_hook);
-    return EOK;
+static errno_t fibril_basic(void *_arg)
+{
+	fibril_add_exit_hook(exit_hook);
+	return EOK;
 }
 
-PCUT_TEST(exit_hook_basic) {
-    value = 0;
-    fid_t other = fibril_create(fibril_basic, NULL);
-    fibril_start(other);
+PCUT_TEST(exit_hook_basic)
+{
+	value = 0;
+	fid_t other = fibril_create(fibril_basic, NULL);
+	fibril_start(other);
 
-    fibril_yield();
+	fibril_yield();
 
-    PCUT_ASSERT_INT_EQUALS(5, value);
+	PCUT_ASSERT_INT_EQUALS(5, value);
 }
 
 /*
-static errno_t fibril_to_be_killed(void* _arg) {
-    fibril_add_exit_hook(exit_hook);
-
-    while (true)
-        firbil_yield();
-
-    assert(0 && "unreachable");
-}
-
-PCUT_TEST(exit_hook_kill) {
-    value = 0;
-    fid_t other = fibril_create(fibril_to_be_killed, NULL);
-    fibril_start(other);
-
-    fibril_yield();
-
-    fibril_kill(other); // anything like this doesn't exist yet
-
-    PCUT_ASSERT_INT_EQUALS(5, value);
-}
-*/
-
+ * static errno_t fibril_to_be_killed(void* _arg) {
+ *     fibril_add_exit_hook(exit_hook);
+ *
+ *     while (true)
+ *         firbil_yield();
+ *
+ *     assert(0 && "unreachable");
+ * }
+ *
+ * PCUT_TEST(exit_hook_kill) {
+ *     value = 0;
+ *     fid_t other = fibril_create(fibril_to_be_killed, NULL);
+ *     fibril_start(other);
+ *
+ *     fibril_yield();
+ *
+ *     fibril_kill(other); // anything like this doesn't exist yet
+ *
+ *     PCUT_ASSERT_INT_EQUALS(5, value);
+ * }
+ */
 
 PCUT_EXPORT(fibril_exit_hook);
