diff options
Diffstat (limited to 'sys/arch/pmax/stand/libsa')
-rw-r--r-- | sys/arch/pmax/stand/libsa/devopen.c | 8 | ||||
-rw-r--r-- | sys/arch/pmax/stand/libsa/getenv.c | 4 | ||||
-rw-r--r-- | sys/arch/pmax/stand/libsa/gets.c | 4 | ||||
-rw-r--r-- | sys/arch/pmax/stand/libsa/strcat.c | 4 | ||||
-rw-r--r-- | sys/arch/pmax/stand/libsa/strcpy.c | 4 |
5 files changed, 12 insertions, 12 deletions
diff --git a/sys/arch/pmax/stand/libsa/devopen.c b/sys/arch/pmax/stand/libsa/devopen.c index 4abb26af879..52c98a2a26b 100644 --- a/sys/arch/pmax/stand/libsa/devopen.c +++ b/sys/arch/pmax/stand/libsa/devopen.c @@ -1,4 +1,4 @@ -/* $NetBSD: devopen.c,v 1.5 1995/01/18 06:53:54 mellon Exp $ */ +/* $NetBSD: devopen.c,v 1.6 1996/09/30 01:02:06 jonathan Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -47,10 +47,10 @@ */ devopen(f, fname, file) struct open_file *f; - char *fname; + const char *fname; char **file; /* out */ { - register char *cp; + register const char *cp; register char *ncp; register struct devsw *dp; register int c, i; @@ -153,6 +153,6 @@ fnd: f->f_dev = dp; if (file && *cp != '\0') - *file = cp; + *file = (char *)cp; /* XXX */ return (0); } diff --git a/sys/arch/pmax/stand/libsa/getenv.c b/sys/arch/pmax/stand/libsa/getenv.c index 8b77da2c9b1..0df210b1dd9 100644 --- a/sys/arch/pmax/stand/libsa/getenv.c +++ b/sys/arch/pmax/stand/libsa/getenv.c @@ -1,4 +1,4 @@ -/* $NetBSD: getenv.c,v 1.5 1995/01/18 06:53:55 mellon Exp $ */ +/* $NetBSD: getenv.c,v 1.6 1996/09/30 01:14:41 jonathan Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -44,5 +44,5 @@ char * getenv(s) char *s; { - return (callv->getenv(s)); + return ((callv->_getenv)(s)); } diff --git a/sys/arch/pmax/stand/libsa/gets.c b/sys/arch/pmax/stand/libsa/gets.c index 36bc3eb75bc..b1c0ebb3da9 100644 --- a/sys/arch/pmax/stand/libsa/gets.c +++ b/sys/arch/pmax/stand/libsa/gets.c @@ -1,4 +1,4 @@ -/* $NetBSD: gets.c,v 1.5 1995/01/18 06:53:56 mellon Exp $ */ +/* $NetBSD: gets.c,v 1.6 1996/09/30 01:14:39 jonathan Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -44,5 +44,5 @@ char * gets(s) char *s; { - return (callv->gets(s)); + return ((callv->_gets)(s)); } 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)); } diff --git a/sys/arch/pmax/stand/libsa/strcpy.c b/sys/arch/pmax/stand/libsa/strcpy.c index 1262d2685ae..cc5e2245cf9 100644 --- a/sys/arch/pmax/stand/libsa/strcpy.c +++ b/sys/arch/pmax/stand/libsa/strcpy.c @@ -1,4 +1,4 @@ -/* $NetBSD: strcpy.c,v 1.5 1995/01/18 06:53:59 mellon Exp $ */ +/* $NetBSD: strcpy.c,v 1.6 1996/09/30 01:14:43 jonathan Exp $ */ /*- * Copyright (c) 1992, 1993 @@ -44,5 +44,5 @@ char * strcpy(s1, s2) char *s1, *s2; { - return (callv->strcpy(s1, s2)); + return (callv->_strcpy(s1, s2)); } |