Index: uspace/app/tester/stdio/stdio1.c
===================================================================
--- uspace/app/tester/stdio/stdio1.c	(revision 04b687b4dcf35f4a93146301dcdccbddbce24f33)
+++ uspace/app/tester/stdio/stdio1.c	(revision 6b2129280de8a8fbec509eaf90ddda1c3a6a9cc5)
@@ -40,4 +40,5 @@
 	char *file_name = "/readme";
 	size_t n;
+	int c;
 
 	printf("Open file '%s'\n", file_name);
@@ -61,5 +62,23 @@
 	printf("Read string '%s'.\n", buf);
 
-	fclose(f);
+	printf("Seek to beginning.\n");
+	if (fseek(f, 0, SEEK_SET) != 0) {
+		fclose(f);
+		return "Failed seeking.";
+	}
+
+	printf("Read using fgetc().\n");
+	while (true) {
+		c = fgetc(f);
+		if (c == EOF) break;
+
+		printf("'%c'", c);
+	}
+
+	printf("[EOF]\n");
+	printf("Closing.\n");
+
+	if (fclose(f) != 0)
+		return "Failed closing.";
 
 	return NULL;
