Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/sys Remove commented out prototypes for bcopy(), bzero()...



details:   https://anonhg.NetBSD.org/src/rev/b3a9a57263fe
branches:  trunk
changeset: 476222:b3a9a57263fe
user:      tron <tron%NetBSD.org@localhost>
date:      Fri Sep 10 00:03:52 1999 +0000

description:
Remove commented out prototypes for bcopy(), bzero() and bcmp().

diffstat:

 sys/sys/systm.h |  8 +-------
 1 files changed, 1 insertions(+), 7 deletions(-)

diffs (22 lines):

diff -r 9e54cf678719 -r b3a9a57263fe sys/sys/systm.h
--- a/sys/sys/systm.h   Fri Sep 10 00:03:14 1999 +0000
+++ b/sys/sys/systm.h   Fri Sep 10 00:03:52 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: systm.h,v 1.93 1999/09/10 00:02:06 tron Exp $  */
+/*     $NetBSD: systm.h,v 1.94 1999/09/10 00:03:52 tron Exp $  */
 
 /*-
  * Copyright (c) 1982, 1988, 1991, 1993
@@ -192,12 +192,6 @@
 
 void   tablefull __P((const char *));
 
-/* XXX b*() are now macros. should remove these prototypes soon */
-#if 0
-void   bcopy __P((const void *, void *, size_t));
-void   bzero __P((void *, size_t));
-int    bcmp __P((const void *, const void *, size_t));
-#endif
 int    kcopy __P((const void *, void *, size_t));
 
 #define bcopy(src, dst, len)   memcpy(dst, src, len)



Home | Main Index | Thread Index | Old Index