Files
banan-os/userspace/libraries/LibC/include/memory.h
Bananymous 423386a052 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...?
2025-06-01 13:48:03 +03:00

7 lines
67 B
C

#ifndef _MEMORY_H
#define _MEMORY_H 1
#include <string.h>
#endif