Index: uspace/lib/c/include/assert.h
===================================================================
--- uspace/lib/c/include/assert.h	(revision 13f2461548be9766ca2b1b38b05f43028fd2a58f)
+++ uspace/lib/c/include/assert.h	(revision 34efa8a55176f48440fdfca1efa0a665406baf55)
@@ -47,7 +47,4 @@
  */
 
-#define STR(l)	#l
-#define STR2(l)	STR(l)
-
 #ifndef NDEBUG
 
@@ -55,5 +52,5 @@
 	do { \
 		if (!(expr)) \
-			assert_abort(#expr, __FILE__, STR2(__LINE__)); \
+			assert_abort(#expr, __FILE__, __LINE__); \
 	} while (0)
 
@@ -64,5 +61,5 @@
 #endif /* NDEBUG */
 
-extern void assert_abort(const char *, const char *, const char *)
+extern void assert_abort(const char *, const char *, unsigned int)
     __attribute__((noreturn));
 
