Eliminate calls of the form "fprintf(stdout,".  Thanks for the idea to
Vladimir N. Oleynik.
diff --git a/cmdedit.c b/cmdedit.c
index 0765ca3..722a36a 100644
--- a/cmdedit.c
+++ b/cmdedit.c
@@ -147,7 +147,7 @@
 static void clean_up_and_die(int sig)
 {
 	cmdedit_reset_term();
-	fprintf(stdout, "\n");
+	printf("\n");
 	if (sig!=SIGINT)
 		exit(EXIT_SUCCESS);
 }