From: Christoph Mallon Date: Mon, 17 Nov 2008 10:22:34 +0000 (+0000) Subject: s/puts("")/putchar(n)/. X-Git-Url: http://nsz.repo.hu/git/?a=commitdiff_plain;h=2f1f93dadee113b3a32db5ed41bd360730131e05;p=cparser s/puts("")/putchar(n)/. [r23720] --- 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); }