summaryrefslogtreecommitdiff
path: root/bin/csh/misc.c
diff options
context:
space:
mode:
Diffstat (limited to 'bin/csh/misc.c')
-rw-r--r--bin/csh/misc.c18
1 files changed, 1 insertions, 17 deletions
diff --git a/bin/csh/misc.c b/bin/csh/misc.c
index 08f456de03d..c11765a2a31 100644
--- a/bin/csh/misc.c
+++ b/bin/csh/misc.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: misc.c,v 1.23 2018/09/18 06:56:09 deraadt Exp $ */
+/* $OpenBSD: misc.c,v 1.24 2018/09/18 17:48:22 millert Exp $ */
/* $NetBSD: misc.c,v 1.6 1995/03/21 09:03:09 cgd Exp $ */
/*-
@@ -52,22 +52,6 @@ any(char *s, int c)
return (0);
}
-char *
-strsave(char *s)
-{
- char *n;
- char *p;
-
- if (s == NULL)
- s = "";
- for (p = s; *p++;)
- continue;
- n = p = xreallocarray(NULL, (p - s), sizeof(char));
- while ((*p++ = *s++) != '\0')
- continue;
- return (n);
-}
-
Char **
blkend(Char **up)
{