Source-Changes-HG archive

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

[src/trunk]: src/sys/lib/libsa #undef bcopy, so that this will still compile ...



details:   https://anonhg.NetBSD.org/src/rev/5c558fa63c19
branches:  trunk
changeset: 467904:5c558fa63c19
user:      cgd <cgd%NetBSD.org@localhost>
date:      Tue Mar 30 22:03:47 1999 +0000

description:
#undef bcopy, so that this will still compile if LIBSA_USE_MEMCPY is defined

diffstat:

 sys/lib/libsa/bcopy.c |  4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)

diffs (18 lines):

diff -r e3c23a8dd601 -r 5c558fa63c19 sys/lib/libsa/bcopy.c
--- a/sys/lib/libsa/bcopy.c     Tue Mar 30 22:02:39 1999 +0000
+++ b/sys/lib/libsa/bcopy.c     Tue Mar 30 22:03:47 1999 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: bcopy.c,v 1.6 1996/01/13 22:25:34 leo Exp $    */
+/*     $NetBSD: bcopy.c,v 1.7 1999/03/30 22:03:47 cgd Exp $    */
 
 /*-
  * Copyright (c) 1993
@@ -38,6 +38,8 @@
 #include <sys/types.h>
 #include "stand.h"
 
+#undef bcopy                   /* in case of LIBSA_USE_MEMCPY */
+
 /*
  * This is designed to be small, not fast.
  */



Home | Main Index | Thread Index | Old Index