From 423386a052c1b10f92501d020847a1873168e1f4 Mon Sep 17 00:00:00 2001 From: Bananymous Date: Fri, 30 May 2025 23:10:27 +0300 Subject: [PATCH] LibC: Add memory.h that just includes string.h There are a lot of ports trying to include memory.h. This is not posix but glibc just includes string.h. I think this is just to privide mem* functionss...? --- userspace/libraries/LibC/include/memory.h | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 userspace/libraries/LibC/include/memory.h diff --git a/userspace/libraries/LibC/include/memory.h b/userspace/libraries/LibC/include/memory.h new file mode 100644 index 0000000000..732d766e9f --- /dev/null +++ b/userspace/libraries/LibC/include/memory.h @@ -0,0 +1,6 @@ +#ifndef _MEMORY_H +#define _MEMORY_H 1 + +#include + +#endif