summaryrefslogtreecommitdiff
path: root/libguile/memmove.c
diff options
context:
space:
mode:
Diffstat (limited to 'libguile/memmove.c')
-rw-r--r--libguile/memmove.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/libguile/memmove.c b/libguile/memmove.c
index f5aab3ac6..5efc30b23 100644
--- a/libguile/memmove.c
+++ b/libguile/memmove.c
@@ -1,6 +1,9 @@
/* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
/* This function is in the public domain. --Per Bothner. */
+/* Software engineering face-lift by Greg J. Badros, 11-Dec-1999,
+ gjb@cs.washington.edu, http://www.cs.washington.edu/homes/gjb */
+
#include <sys/types.h>
#ifdef __STDC__
@@ -14,10 +17,7 @@ PTR memmove ();
#endif
PTR
-memmove (s1, s2, n)
- PTR s1;
- CPTR s2;
- size_t n;
+memmove (PTR s1, CPTR s2, size_t n)
{
bcopy (s2, s1, n);
return s1;