summaryrefslogtreecommitdiff
path: root/src/sum.c
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>1998-06-29 02:11:07 +0000
committerJim Meyering <jim@meyering.net>1998-06-29 02:11:07 +0000
commitdd9470cb58f9c668279aa8dab8164440b73daaad (patch)
treecf22a0d981deca2485740b4b6ec6efd6ae15793d /src/sum.c
parent02fc5fa0d0a68fa070dcb93983ad20590e051164 (diff)
downloadcoreutils-dd9470cb58f9c668279aa8dab8164440b73daaad.tar.xz
Change all uses of unlocked-wrapped functions to their upper case wrapper names.
Diffstat (limited to 'src/sum.c')
-rw-r--r--src/sum.c14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/sum.c b/src/sum.c
index de3dfe15a..b013afd34 100644
--- a/src/sum.c
+++ b/src/sum.c
@@ -107,7 +107,7 @@ bsd_sum_file (const char *file, int print_name)
}
}
- while ((ch = getc (fp)) != EOF)
+ while ((ch = GETC (fp)) != EOF)
{
total_bytes++;
ROTATE_RIGHT (checksum);
@@ -115,15 +115,15 @@ bsd_sum_file (const char *file, int print_name)
checksum &= 0xffff; /* Keep it within bounds. */
}
- if (ferror (fp))
+ if (FERROR (fp))
{
error (0, errno, "%s", file);
if (!STREQ (file, "-"))
- fclose (fp);
+ FCLOSE (fp);
return -1;
}
- if (!STREQ (file, "-") && fclose (fp) == EOF)
+ if (!STREQ (file, "-") && FCLOSE (fp) == EOF)
{
error (0, errno, "%s", file);
return -1;
@@ -132,7 +132,7 @@ bsd_sum_file (const char *file, int print_name)
printf ("%05lu %5ld", checksum, (total_bytes + 1024 - 1) / 1024);
if (print_name > 1)
printf (" %s", file);
- putchar ('\n');
+ PUTCHAR ('\n');
return 0;
}
@@ -192,7 +192,7 @@ sysv_sum_file (const char *file, int print_name)
printf ("%lu %ld", checksum % 0xffff, (total_bytes + 512 - 1) / 512);
if (print_name)
printf (" %s", file);
- putchar ('\n');
+ PUTCHAR ('\n');
return 0;
}
@@ -252,7 +252,7 @@ main (int argc, char **argv)
if ((*sum_func) (argv[optind], files_given) < 0)
errors = 1;
- if (have_read_stdin && fclose (stdin) == EOF)
+ if (have_read_stdin && FCLOSE (stdin) == EOF)
error (EXIT_FAILURE, errno, "-");
exit (errors == 0 ? EXIT_SUCCESS : EXIT_FAILURE);
}