Index: fusl/src/string/bcopy.c |
diff --git a/fusl/src/string/bcopy.c b/fusl/src/string/bcopy.c |
index a07129f50dd131be1642be364b7ca780cd4fc825..65ab61a6e945a95777c8bb4d0f4467169e545c6a 100644 |
--- a/fusl/src/string/bcopy.c |
+++ b/fusl/src/string/bcopy.c |
@@ -2,7 +2,6 @@ |
#include <string.h> |
#include <strings.h> |
-void bcopy(const void *s1, void *s2, size_t n) |
-{ |
- memmove(s2, s1, n); |
+void bcopy(const void* s1, void* s2, size_t n) { |
+ memmove(s2, s1, n); |
} |