Index: uspace/lib/posix/test/scanf.c
===================================================================
--- uspace/lib/posix/test/scanf.c	(revision 0d0b3197a149bb5e5c53d21136df5b8c283cdc4a)
+++ uspace/lib/posix/test/scanf.c	(revision 7a08c7001fc1391d07dde670df09e80afa0dbc03)
@@ -27,6 +27,5 @@
  */
 
-#define LIBPOSIX_INTERNAL
-#define __POSIX_DEF__(x) posix_##x
+
 
 #include <errno.h>
@@ -52,5 +51,5 @@
 PCUT_TEST(int_decimal) {
 	int number;
-	int rc = posix_sscanf("4242", "%d", &number);
+	int rc = sscanf("4242", "%d", &number);
 	PCUT_ASSERT_INT_EQUALS(1, rc);
 	PCUT_ASSERT_INT_EQUALS(4242, number);
@@ -59,5 +58,5 @@
 PCUT_TEST(int_negative_decimal) {
 	int number;
-	int rc = posix_sscanf("-53", "%d", &number);
+	int rc = sscanf("-53", "%d", &number);
 	PCUT_ASSERT_INT_EQUALS(1, rc);
 	PCUT_ASSERT_INT_EQUALS(-53, number);
@@ -83,5 +82,5 @@
 	void *p;
 
-	int rc = posix_sscanf(
+	int rc = sscanf(
 		"\n j tt % \t -121314 98765 aqw 0765 0x77 0xABCDEF88 -99 884",
 		" j tt %%%3hhd%1hhu%3hd %3hu%u aqw%n %lo%llx %p %li %lld",
@@ -108,5 +107,5 @@
 	long double ld;
 
-	int rc = posix_sscanf(
+	int rc = sscanf(
 		"\n \t\t1.0 -0x555.AP10 1234.5678e12",
 		"%f %lf %Lf",
@@ -124,5 +123,5 @@
 	char *pstr;
 
-	int rc = posix_sscanf(
+	int rc = sscanf(
 		"\n\n\thello world    \n",
 		"%5s %ms",
@@ -141,5 +140,5 @@
 	char *pscanset;
 
-	int rc = posix_sscanf(
+	int rc = sscanf(
 		"\n\n\th-e-l-l-o world-]    \n",
 		" %9[-eh-o] %m[^]-]",
@@ -158,5 +157,5 @@
 	char *pseq;
 
-	int rc = posix_sscanf(
+	int rc = sscanf(
 		"\n\n\thello world    \n",
 		" %5c %mc",
