summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMichael Shalayeff <mickey@cvs.openbsd.org>1997-03-31 23:47:05 +0000
committerMichael Shalayeff <mickey@cvs.openbsd.org>1997-03-31 23:47:05 +0000
commit6ca1dcc6ca5714e6d768955e137647a3bc07c9e6 (patch)
treee5b85458b89929ae4cc7f4bca3c496c7f801193a
parent4a84eafbdaebd352aba22194af2c78c450dadd27 (diff)
strlen proto
-rw-r--r--sys/lib/libsa/stand.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/lib/libsa/stand.h b/sys/lib/libsa/stand.h
index dc3be5e178d..87c87854a5f 100644
--- a/sys/lib/libsa/stand.h
+++ b/sys/lib/libsa/stand.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: stand.h,v 1.20 1997/02/16 14:49:05 mickey Exp $ */
+/* $OpenBSD: stand.h,v 1.21 1997/03/31 23:47:04 mickey Exp $ */
/* $NetBSD: stand.h,v 1.18 1996/11/30 04:35:51 gwr Exp $ */
/*-
@@ -159,6 +159,7 @@ void *memcpy __P((void *, const void *, size_t));
int memcmp __P((const void *, const void*, size_t));
char *strncpy __P((char *, const char *, size_t));
char *strcpy __P((char *, const char *));
+size_t strlen __P((const char *));
void *memset __P((void *, int, size_t));
void exec __P((char *, void *, int));
int open __P((const char *, int));