Index: uspace/app/tester/thread/setjmp1.c
===================================================================
--- uspace/app/tester/thread/setjmp1.c	(revision a35b458e9db1ca95e679799dc7c1b12c83359ca3)
+++ uspace/app/tester/thread/setjmp1.c	(revision 231c770580f4400a6e0e7612723b1efb16fd5390)
@@ -35,10 +35,12 @@
 static int counter;
 
-static void do_the_long_jump(void) {
+static void do_the_long_jump(void)
+{
 	TPRINTF("Will do a long jump back to test_it().\n");
 	longjmp(jmp_env, 1);
 }
 
-static const char *test_it(void) {
+static const char *test_it(void)
+{
 	int second_round = setjmp(jmp_env);
 	counter++;
