From baca46e13344bec7adffcdc4e583288a86696b9a Mon Sep 17 00:00:00 2001 From: Travis Geiselbrecht Date: Sun, 25 Sep 2022 18:03:36 -0700 Subject: [PATCH] [lib][libc] fix an incorrect include path in a libc file --- lib/libc/string/memscan.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/libc/string/memscan.c b/lib/libc/string/memscan.c index 991878bf..f832f4a9 100644 --- a/lib/libc/string/memscan.c +++ b/lib/libc/string/memscan.c @@ -9,8 +9,8 @@ * license that can be found in the LICENSE file or at * https://opensource.org/licenses/MIT */ -#include -#include +#include +#include void *memscan(void *addr, int c, size_t size) { unsigned char *p = (unsigned char *)addr;