Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(542)

Unified Diff: fusl/src/string/bcopy.c

Issue 1714623002: [fusl] clang-format fusl (Closed) Base URL: git@github.com:domokit/mojo.git@master
Patch Set: headers too Created 4 years, 10 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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);
}

Powered by Google App Engine
This is Rietveld 408576698