Index: uspace/lib/test/libtest.c
===================================================================
--- uspace/lib/test/libtest.c	(revision ec3e2ed0366d7ce41de472bed0b96c6e71cba2e0)
+++ uspace/lib/test/libtest.c	(revision a6dffb87dcaf2a7ccc2024825b36ea3c06c77e48)
@@ -35,5 +35,5 @@
  */
 
-//#include <stdio.h>
+#include <stdio.h>
 #include "libtest.h"
 
@@ -56,5 +56,6 @@
 int test_fun2(void)
 {
-	return number;
+	return 42;
+//	return number;
 }
 
@@ -65,5 +66,7 @@
 //	return 42;
 //	while(1);
-	return test_fun2();
+//	return test_fun2();
+	printf("Hello from libtest/test_func()!\n");
+	return 42;
 }
 
