summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorderaadt <deraadt@openbsd.org>1999-07-21 21:12:51 +0000
committerderaadt <deraadt@openbsd.org>1999-07-21 21:12:51 +0000
commit4281c76cb85ef224b9730500615b6a82bbb31d27 (patch)
tree74b816e3de79a0355103399b0fdb1a3c4f727972
parentdefine some more cache-related pdc routines (diff)
downloadwireguard-openbsd-4281c76cb85ef224b9730500615b6a82bbb31d27.tar.xz
wireguard-openbsd-4281c76cb85ef224b9730500615b6a82bbb31d27.zip
proto mem*() functions
-rw-r--r--sys/sys/systm.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/sys/sys/systm.h b/sys/sys/systm.h
index bcf9f0aa4f0..de541b2ff73 100644
--- a/sys/sys/systm.h
+++ b/sys/sys/systm.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: systm.h,v 1.30 1999/05/20 12:56:40 aaron Exp $ */
+/* $OpenBSD: systm.h,v 1.31 1999/07/21 21:12:51 deraadt Exp $ */
/* $NetBSD: systm.h,v 1.50 1996/06/09 04:55:09 briggs Exp $ */
/*-
@@ -179,6 +179,9 @@ void bcopy __P((const void *, void *, size_t));
void ovbcopy __P((const void *, void *, size_t));
void bzero __P((void *, size_t));
int bcmp __P((const void *, const void *, size_t));
+void *memcpy __P((void *, const void *, size_t));
+void *memmove __P((void *, const void *, size_t));
+void *memset __P((void *, int, size_t));
int copystr __P((const void *, void *, size_t, size_t *));
int copyinstr __P((const void *, void *, size_t, size_t *));