Use wfopen instead of fopen & error_msg, saves 64 bytes

This commit is contained in:
Glenn L McGrath 2001-10-05 05:24:19 +00:00
parent bf265daa47
commit 1d098cefe2
2 changed files with 2 additions and 4 deletions

View File

@ -45,9 +45,8 @@ tee_main(int argc, char **argv)
files = (FILE **)xmalloc(sizeof(FILE *) * (argc - optind + 1));
files[nfiles++] = stdout;
while (optind < argc) {
if ((files[nfiles++] = fopen(argv[optind++], mode)) == NULL) {
if ((files[nfiles++] = wfopen(argv[optind++], mode)) == NULL) {
nfiles--;
perror_msg("%s", argv[optind-1]);
status = 1;
}
}

3
tee.c
View File

@ -45,9 +45,8 @@ tee_main(int argc, char **argv)
files = (FILE **)xmalloc(sizeof(FILE *) * (argc - optind + 1));
files[nfiles++] = stdout;
while (optind < argc) {
if ((files[nfiles++] = fopen(argv[optind++], mode)) == NULL) {
if ((files[nfiles++] = wfopen(argv[optind++], mode)) == NULL) {
nfiles--;
perror_msg("%s", argv[optind-1]);
status = 1;
}
}