summaryrefslogtreecommitdiff
path: root/Build/source/texk/seetexk/bcopy.c
diff options
context:
space:
mode:
Diffstat (limited to 'Build/source/texk/seetexk/bcopy.c')
-rw-r--r--Build/source/texk/seetexk/bcopy.c26
1 files changed, 0 insertions, 26 deletions
diff --git a/Build/source/texk/seetexk/bcopy.c b/Build/source/texk/seetexk/bcopy.c
deleted file mode 100644
index e9bb17ea79e..00000000000
--- a/Build/source/texk/seetexk/bcopy.c
+++ /dev/null
@@ -1,26 +0,0 @@
-#ifndef lint
-static char rcsid[] = "$Header: /usr/src/local/tex/local/mctex/lib/RCS/bcopy.c,v 3.1 89/08/22 21:42:07 chris Exp $";
-#endif
-
-/*
- * Sample bcopy() routine.
- * This should be rewritten to be as fast as possible for your
- * machine.
- */
-void bcopy(from, to, count)
- register char *from, *to;
- register int count;
-{
-
- if (from == to)
- return;
- if (from > to) {
- while (--count >= 0)
- *to++ = *from++;
- } else {
- from += count;
- to += count;
- while (--count >= 0)
- *--to = *--from;
- }
-}