Add br-if-logtest opcode
[bpt/guile.git] / libguile / memmove.c
index f5aab3a..a62083f 100644 (file)
@@ -1,6 +1,7 @@
 /* Wrapper to implement ANSI C's memmove using BSD's bcopy. */
 /* This function is in the public domain.  --Per Bothner. */
 
+
 #include <sys/types.h>
 
 #ifdef __STDC__
@@ -14,11 +15,14 @@ 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;
 }
+
+/*
+  Local Variables:
+  c-file-style: "gnu"
+  End:
+*/