diff options
Diffstat (limited to 'sys/arch/pmax/stand/libsa/strcat.c')
-rw-r--r-- | sys/arch/pmax/stand/libsa/strcat.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/arch/pmax/stand/libsa/strcat.c b/sys/arch/pmax/stand/libsa/strcat.c index 3596d4a7798..1855cba3197 100644 --- a/sys/arch/pmax/stand/libsa/strcat.c +++ b/sys/arch/pmax/stand/libsa/strcat.c @@ -1,4 +1,4 @@ -/* $NetBSD: strcat.c,v 1.5 1995/01/18 06:53:57 mellon Exp $ */ +/* $NetBSD: strcat.c,v 1.6 1996/09/30 01:14:42 jonathan Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -44,5 +44,5 @@ char * strcat(s1, s2) char *s1, *s2; { - return (callv->strcat(s1, s2)); + return ((callv->_strcat) (s1, s2)); } |