Indent
This commit is contained in:
parent
9cd732c88d
commit
dd9d8e283b
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user