summaryrefslogtreecommitdiff
path: root/LibC/strings.cpp
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-07 11:49:03 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-07 11:49:03 +0200
commit46527b72d7cfbeee163c1009e27805061fcddf09 (patch)
tree30fc4833a5f24e5a0b57d0d21c220d4fd6ba48d6 /LibC/strings.cpp
parent892acfb10d98014e8880fa957a14541020ec263c (diff)
downloadserenity-46527b72d7cfbeee163c1009e27805061fcddf09.zip
LibC: Run clang-format on everything.
Diffstat (limited to 'LibC/strings.cpp')
-rw-r--r--LibC/strings.cpp3
1 files changed, 1 insertions, 2 deletions
diff --git a/LibC/strings.cpp b/LibC/strings.cpp
index abbfeca214..8f248e1438 100644
--- a/LibC/strings.cpp
+++ b/LibC/strings.cpp
@@ -1,6 +1,6 @@
-#include <strings.h>
#include <assert.h>
#include <ctype.h>
+#include <strings.h>
extern "C" {
@@ -32,5 +32,4 @@ int strncasecmp(const char* s1, const char* s2, size_t n)
} while (--n);
return 0;
}
-
}