From dd9d8e283b8beabc74c46ee3ad0f454462063a1d Mon Sep 17 00:00:00 2001 From: Frank Denis Date: Thu, 23 Feb 2017 11:13:43 +0100 Subject: [PATCH] Indent --- test/quirks/quirks.h | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/test/quirks/quirks.h b/test/quirks/quirks.h index 6bf3c81c..65935a47 100644 --- a/test/quirks/quirks.h +++ b/test/quirks/quirks.h @@ -10,8 +10,8 @@ static void * xmemset(void *dst, int c, size_t n) { - unsigned char *dst_ = (unsigned char *) dst; - const unsigned char c_ = (unsigned char) c; + unsigned char * dst_ = (unsigned char *) dst; + const unsigned char c_ = (unsigned char) c; size_t i; for (i = 0; i < n; i++) { @@ -25,7 +25,8 @@ xmemset(void *dst, int c, size_t n) # define strcmp(s1, s2) xstrcmp(s1, s2) static int -strcmp(const char *s1, const char *s2) { +strcmp(const char *s1, const char *s2) +{ while (*s1 == *s2++) { if (*s1++ == 0) { return 0;