diff --git a/sys/arch/pmax/stand/libsa/strcmp.c b/sys/arch/pmax/stand/libsa/strcmp.c index 18489463bb11..ae936f99d515 100644 --- a/sys/arch/pmax/stand/libsa/strcmp.c +++ b/sys/arch/pmax/stand/libsa/strcmp.c @@ -1,4 +1,4 @@ -/* $NetBSD: strcmp.c,v 1.5 1995/01/18 06:53:58 mellon Exp $ */ +/* $NetBSD: strcmp.c,v 1.6 1995/10/26 01:39:49 jonathan Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -39,9 +39,10 @@ */ #include +#undef strcmp strcmp(s1, s2) char *s1, *s2; { - return (callv->strcmp(s1, s2)); + return (callv->_strcmp(s1, s2)); }