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...?
7 lines
67 B
C
7 lines
67 B
C
#ifndef _MEMORY_H
|
|
#define _MEMORY_H 1
|
|
|
|
#include <string.h>
|
|
|
|
#endif
|