* *.c: Finish replacing K&R style prototypes with ANSI C
[bpt/guile.git] / libguile / memmove.c
index f5aab3a..5efc30b 100644 (file)
@@ -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;