From 2f1f93dadee113b3a32db5ed41bd360730131e05 Mon Sep 17 00:00:00 2001 From: Christoph Mallon Date: Mon, 17 Nov 2008 10:22:34 +0000 Subject: [PATCH] s/puts("")/putchar(n)/. [r23720] --- main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.c b/main.c index ce9526b..6e2b62e 100644 --- a/main.c +++ b/main.c @@ -231,7 +231,7 @@ static void lextest(FILE *in, const char *fname) do { lexer_next_preprocessing_token(); print_token(stdout, &lexer_token); - puts(""); + putchar('\n'); } while (lexer_token.type != T_EOF); } -- 2.20.1