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:
6
userspace/libraries/LibC/include/memory.h
Normal file
6
userspace/libraries/LibC/include/memory.h
Normal file
@@ -0,0 +1,6 @@
|
||||
#ifndef _MEMORY_H
|
||||
#define _MEMORY_H 1
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#endif
|
||||
Reference in New Issue
Block a user