From c6ef1fa2e2efac74e46c8fefcc0555d7a6dbe950 Mon Sep 17 00:00:00 2001 From: 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. git-svn-id: svn://busybox.net/trunk/busybox@1616 69ca8d6d-28ef-0310-b511-8ec308f3f277 --- 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 0765ca3ce..722a36a50 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.2.3-55-g6feb