changeset 1650:60a49bc9673a

* dispnew.c: Remove dyked-out copy of safe_bcopy.
author Jim Blandy <jimb@redhat.com>
date Sun, 06 Dec 1992 22:16:01 +0000
parents c3225b867171
children ef09501a0a9b
files src/dispnew.c
diffstat 1 files changed, 0 insertions(+), 30 deletions(-) [+]
line wrap: on
line diff
--- a/src/dispnew.c	Sun Dec 06 22:15:29 1992 +0000
+++ b/src/dispnew.c	Sun Dec 06 22:16:01 1992 +0000
@@ -517,36 +517,6 @@
     }
 }     
 
-#if 0
-void
-safe_bcopy (from, to, size)
-     char *from, *to;
-     int size;
-{
-  register char *endf;
-  register char *endt;
-
-  if (size == 0)
-    return;
-
-  /* If destination is higher in memory, and overlaps source zone,
-     copy from the end. */
-  if (from < to && from + size > to)
-    {
-      endf = from + size;
-      endt = to + size;
-
-      do
-	*--endt = *--endf;
-      while (endf != from);
-
-      return;
-    }
-
-  bcopy (from, to, size);
-}
-#endif
-
 /* Rotate a vector of SIZE bytes right, by DISTANCE bytes.
    DISTANCE may be negative.  */