Index: uspace/app/tester/tester.c
===================================================================
--- uspace/app/tester/tester.c	(revision 515a010298db5702edc01e5a63d4612a76fe0140)
+++ uspace/app/tester/tester.c	(revision 5719f6ddbbd629f7eb5c571fcbcbd7a87a3565c7)
@@ -108,6 +108,15 @@
 }
 
-int main(void)
+int main(int argc, char **argv)
 {
+	printf("Number of arguments: %d\n", argc);
+	if (argv) {
+		printf("Arguments:");
+		while (*argv) {
+			printf(" '%s'", *argv++);
+		}
+		printf("\n");
+	}
+
 	while (1) {
 		char c;
