forked from Bananymous/banan-os
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:
parent
1c882ea361
commit
423386a052
|
@ -0,0 +1,6 @@
|
|||
#ifndef _MEMORY_H
|
||||
#define _MEMORY_H 1
|
||||
|
||||
#include <string.h>
|
||||
|
||||
#endif
|
Loading…
Reference in New Issue