Replace STRCMP with strcmp()

This commit is contained in:
Andrew Cagney
2001-01-19 08:01:47 +00:00
parent 8038e1e2b1
commit 494b7ec97e
8 changed files with 24 additions and 23 deletions

View File

@@ -145,7 +145,7 @@ open (char *filename, int modes)
for (next = files_start; *(int *) next; next += *(int *) next)
{
if (!STRCMP (next + 4, filename))
if (!strcmp (next + 4, filename))
{
sourcebeg = next + 4 + strlen (next + 4) + 1;
sourcebeg = (char *) (((int) sourcebeg + 3) & (-4));