From dd9470cb58f9c668279aa8dab8164440b73daaad Mon Sep 17 00:00:00 2001 From: Jim Meyering Date: Mon, 29 Jun 1998 02:11:07 +0000 Subject: Change all uses of unlocked-wrapped functions to their upper case wrapper names. --- src/asa.c | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) (limited to 'src/asa.c') diff --git a/src/asa.c b/src/asa.c index 411122c38..baf4d3b69 100644 --- a/src/asa.c +++ b/src/asa.c @@ -4,7 +4,7 @@ TODO add usage function call parse_long_options dcl, set program_name - do fclose/error checking + do FCLOSE/error checking */ /* asa.c - interpret ASA carriage control characters @@ -67,13 +67,13 @@ static void copy_file (FILE *fp); static void form_feed () { - putchar ('\f'); + PUTCHAR ('\f'); } static void new_line () { - putchar ('\n'); + PUTCHAR ('\n'); } static void @@ -119,20 +119,20 @@ flush () if (ch != ' ') { if (printed) - putchar ('\b'); - putchar (ch); + PUTCHAR ('\b'); + PUTCHAR (ch); printed = 1; } } } if (!printed) - putchar (' '); + PUTCHAR (' '); } for (j = 0; j < line_num; j++) free (line_buffer[j].chr); line_num = 0; - putchar ('\n'); + PUTCHAR ('\n'); } static size_t @@ -255,7 +255,7 @@ main (int argc, char **argv) else { copy_file (fp); - fclose (fp); + FCLOSE (fp); } } } -- cgit v1.2.3-54-g00ecf