Eliminate calls of the form "fprintf(stdout,".  Thanks for the idea to
Vladimir N. Oleynik.
diff --git a/util-linux/rdate.c b/util-linux/rdate.c
index 03f7f2d..bb53927 100644
--- a/util-linux/rdate.c
+++ b/util-linux/rdate.c
@@ -126,7 +126,7 @@
 			perror_msg_and_die("Could not set time of day");
 	}
 	if (printdate) {
-		fprintf(stdout, "%s", ctime(&time));
+		printf("%s", ctime(&time));
 	}
 
 	return EXIT_SUCCESS;