summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTheo de Raadt <deraadt@cvs.openbsd.org>1996-01-15 01:07:16 +0000
committerTheo de Raadt <deraadt@cvs.openbsd.org>1996-01-15 01:07:16 +0000
commit36a378b41f0451ca453ced6904db8bbb82c58ab7 (patch)
tree22372ca1c7ce517e1b9aff433b6ed262af97d1c3
parent54b215b8b135475a18eba420500ed718f7d72a87 (diff)
proto memcpy
-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 f987bc84fb2..9470e7c8c43 100644
--- a/sys/lib/libsa/stand.h
+++ b/sys/lib/libsa/stand.h
@@ -1,4 +1,4 @@
-/* $NetBSD: stand.h,v 1.12 1995/09/18 21:19:47 pk Exp $ */
+/* $NetBSD: stand.h,v 1.13 1996/01/13 22:25:42 leo Exp $ */
/*-
* Copyright (c) 1993
@@ -120,6 +120,7 @@ void gets __P((char *));
__dead void panic __P((const char *, ...)) __attribute__((noreturn));
__dead void _rtt __P((void)) __attribute__((noreturn));
void bcopy __P((const void *, void *, size_t));
+void *memcpy __P((void *, const void *, size_t));
void exec __P((char *, char *, int));
int open __P((const char *, int));
int close __P((int));