summaryrefslogtreecommitdiff
path: root/xts5/src/libproto/Utils.c
diff options
context:
space:
mode:
Diffstat (limited to 'xts5/src/libproto/Utils.c')
-rw-r--r--xts5/src/libproto/Utils.c24
1 files changed, 0 insertions, 24 deletions
diff --git a/xts5/src/libproto/Utils.c b/xts5/src/libproto/Utils.c
index 7c4057ca..359b6823 100644
--- a/xts5/src/libproto/Utils.c
+++ b/xts5/src/libproto/Utils.c
@@ -162,30 +162,6 @@ Get_Date()
return(buf);
}
-
-/*
- * These are routines found in BSD and not found in SYSV.
- */
-
-void
-wbcopy (b1, b2, length)
-register unsigned char *b1, *b2;
-register length;
-{
- if (b1 < b2) {
- b2 += length;
- b1 += length;
- while (length--) {
- *--b2 = *--b1;
- }
- }
- else {
- while (length--) {
- *b2++ = *b1++;
- }
- }
-}
-
wbcmp (b1, b2, length)
register unsigned char *b1, *b2;
register length;