summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJason Peel <jsyn@cvs.openbsd.org>2003-05-12 21:42:02 +0000
committerJason Peel <jsyn@cvs.openbsd.org>2003-05-12 21:42:02 +0000
commit5c79a4cbddc6deecc2159b180635ff43e9c3eea6 (patch)
tree45413123efd4f8fed550f459085e6edbe07bbb55
parent371c6a41a0e821bd302c98058e7af88a7ab89995 (diff)
add s_strl{cat,cpy} prototypes; ok tedu@
-rw-r--r--bin/csh/extern.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/bin/csh/extern.h b/bin/csh/extern.h
index cb9ef9175df..21d13b6df0b 100644
--- a/bin/csh/extern.h
+++ b/bin/csh/extern.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: extern.h,v 1.10 2003/05/12 20:54:49 jsyn Exp $ */
+/* $OpenBSD: extern.h,v 1.11 2003/05/12 21:42:01 jsyn Exp $ */
/* $NetBSD: extern.h,v 1.8 1996/10/31 23:50:54 christos Exp $ */
/*-
@@ -312,6 +312,8 @@ void showall(Char **, struct command *);
* str.c:
*/
#ifdef SHORT_STRINGS
+size_t s_strlcpy(Char *, const Char *, size_t);
+size_t s_strlcat(Char *, const Char *, size_t);
Char *s_strchr(Char *, int);
Char *s_strrchr(Char *, int);
Char *s_strspl(Char *, Char *);