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...?
This commit is contained in:
Bananymous 2025-05-30 23:10:27 +03:00
parent 1c882ea361
commit 423386a052
1 changed files with 6 additions and 0 deletions

View File

@ -0,0 +1,6 @@
#ifndef _MEMORY_H
#define _MEMORY_H 1
#include <string.h>
#endif