1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-20 18:56:39 +02:00

Change all uses of unlocked-wrapped functions to their upper case wrapper names.

This commit is contained in:
Jim Meyering
1998-06-29 02:13:21 +00:00
parent dd9470cb58
commit c5eb9edf26
16 changed files with 58 additions and 58 deletions

View File

@@ -205,15 +205,15 @@ just_echo:
c = c * 8 + (*s++ - '0');
break;
case '\\': break;
default: putchar ('\\'); break;
default: PUTCHAR ('\\'); break;
}
}
putchar(c);
PUTCHAR(c);
}
argc--;
argv++;
if (argc > 0)
putchar(' ');
PUTCHAR(' ');
}
}
else
@@ -225,11 +225,11 @@ just_echo:
argc--;
argv++;
if (argc > 0)
putchar (' ');
PUTCHAR (' ');
}
}
}
if (display_return)
putchar ('\n');
PUTCHAR ('\n');
exit (0);
}