Index: uspace/lib/c/Makefile
===================================================================
--- uspace/lib/c/Makefile	(revision ec3e2ed0366d7ce41de472bed0b96c6e71cba2e0)
+++ uspace/lib/c/Makefile	(revision 1d465bf4b98a5bc5b790ecab106baa34aa9d68ee)
@@ -152,2 +152,7 @@
 $(COMMON_HEADER_ARCH): $(COMMON_HEADER)
 	ln -sfn ../../../$< $@
+
+test:
+	echo uspace_prefix=$(USPACE_PREFIX)
+	echo libc_prefix=$(LIBC_PREFIX)
+	echo linker_script=$(LINKER_SCRIPT)
Index: uspace/lib/c/arch/ia32/src/syscall.S
===================================================================
--- uspace/lib/c/arch/ia32/src/syscall.S	(revision ec3e2ed0366d7ce41de472bed0b96c6e71cba2e0)
+++ uspace/lib/c/arch/ia32/src/syscall.S	(revision 1d465bf4b98a5bc5b790ecab106baa34aa9d68ee)
@@ -32,4 +32,5 @@
 __syscall_fast_func:
 	.long __syscall_slow
+	.size __syscall_fast_func, . - __syscall_fast_func
 
 .text
Index: uspace/lib/softint/Makefile
===================================================================
--- uspace/lib/softint/Makefile	(revision ec3e2ed0366d7ce41de472bed0b96c6e71cba2e0)
+++ uspace/lib/softint/Makefile	(revision 1d465bf4b98a5bc5b790ecab106baa34aa9d68ee)
@@ -31,4 +31,6 @@
 EXTRA_CFLAGS = -Iinclude
 LIBRARY = libsoftint
+SLIBRARY = libsoftint.so.0.0
+LSONAME = libsoftint.so.0
 
 SOURCES = \
Index: uspace/lib/softint/libsoftint.so.0
===================================================================
--- uspace/lib/softint/libsoftint.so.0	(revision 1d465bf4b98a5bc5b790ecab106baa34aa9d68ee)
+++ uspace/lib/softint/libsoftint.so.0	(revision 1d465bf4b98a5bc5b790ecab106baa34aa9d68ee)
@@ -0,0 +1,1 @@
+libsoftint.so.0.0
Index: uspace/lib/test/libtest.c
===================================================================
--- uspace/lib/test/libtest.c	(revision ec3e2ed0366d7ce41de472bed0b96c6e71cba2e0)
+++ uspace/lib/test/libtest.c	(revision 1d465bf4b98a5bc5b790ecab106baa34aa9d68ee)
@@ -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;
 }
 
