From 6132e1e97271fb915184803dec701fd39ef7bb10 Mon Sep 17 00:00:00 2001 From: Kaimakan71 Date: Sun, 21 Apr 2024 14:05:38 -0400 Subject: libc: Add close() and stdio functions Signed-off-by: Kaimakan71 Signed-off-by: Ian Moffett --- lib/libc/src/string/strcmp.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'lib/libc/src/string/strcmp.c') diff --git a/lib/libc/src/string/strcmp.c b/lib/libc/src/string/strcmp.c index 9d9c5f1..b9e941a 100644 --- a/lib/libc/src/string/strcmp.c +++ b/lib/libc/src/string/strcmp.c @@ -32,8 +32,8 @@ int strcmp(const char *s1, const char *s2) { - char *p1 = (char*)s1; - char *p2 = (char*)s2; + char *p1 = (char *)s1; + char *p2 = (char *)s2; while (*p1 || *p2) { if (*p1 < *p2) -- cgit v1.2.3