From 12f417edbd21b322a8eaa8feb0ab238f13fa83c6 Mon Sep 17 00:00:00 2001 From: Matt Kraai Date: Thu, 18 Jan 2001 02:57:08 +0000 Subject: Eliminate calls of the form "fprintf(stdout,". Thanks for the idea to Vladimir N. Oleynik. --- shell/cmdedit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'shell') diff --git a/shell/cmdedit.c b/shell/cmdedit.c index 0765ca3..722a36a 100644 --- a/shell/cmdedit.c +++ b/shell/cmdedit.c @@ -147,7 +147,7 @@ static void cmdedit_reset_term(void) static void clean_up_and_die(int sig) { cmdedit_reset_term(); - fprintf(stdout, "\n"); + printf("\n"); if (sig!=SIGINT) exit(EXIT_SUCCESS); } -- cgit v1.1