diff options
author | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 05:29:32 +0000 |
---|---|---|
committer | Theo de Raadt <deraadt@cvs.openbsd.org> | 1995-12-14 05:29:32 +0000 |
commit | 86b4fdd623d3c50d7bfd9427c2c9208454cd0da7 (patch) | |
tree | 5d95abcaf58d01703a30c7ab600537d3b8f67989 /sys/arch/pmax/stand/libsa | |
parent | e2cd6c399798843e13e76f49dc8ee048b51f99f1 (diff) |
update from netbsd (verbatim)
Diffstat (limited to 'sys/arch/pmax/stand/libsa')
-rw-r--r-- | sys/arch/pmax/stand/libsa/strcmp.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/sys/arch/pmax/stand/libsa/strcmp.c b/sys/arch/pmax/stand/libsa/strcmp.c index 18489463bb1..ae936f99d51 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 <arch/pmax/stand/dec_prom.h> +#undef strcmp strcmp(s1, s2) char *s1, *s2; { - return (callv->strcmp(s1, s2)); + return (callv->_strcmp(s1, s2)); } |