From 139ac5e0ce23fd08826b5e3429f33da3fb26c6c9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Francisco=20Jos=C3=A9=20Garc=C3=ADa=20Garc=C3=ADa?= Date: Tue, 16 Jan 2018 11:03:07 +0100 Subject: [PATCH 1/2] Create memory.h --- newlib/libc/include/memory.h | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 newlib/libc/include/memory.h diff --git a/newlib/libc/include/memory.h b/newlib/libc/include/memory.h new file mode 100644 index 0000000000..5b7d08f473 --- /dev/null +++ b/newlib/libc/include/memory.h @@ -0,0 +1,12 @@ +/* + * memory.h + * + * Redirects to string.h. Mostly here to help with porting. + */ + +#ifndef _MEMORY_H_ +#define _MEMORY_H_ + +#include + +#endif /* _MEMORY_H_ */ From 662a30bd1e67a72e8cfc883b80c557b1d668c4ac Mon Sep 17 00:00:00 2001 From: ggf906 Date: Tue, 16 Jan 2018 11:41:46 +0100 Subject: [PATCH 2/2] Change location --- newlib/libc/{ => sys/vita}/include/memory.h | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename newlib/libc/{ => sys/vita}/include/memory.h (100%) diff --git a/newlib/libc/include/memory.h b/newlib/libc/sys/vita/include/memory.h similarity index 100% rename from newlib/libc/include/memory.h rename to newlib/libc/sys/vita/include/memory.h