[PATCH 2/2] Provide <memory.h>

Sebastian Huber sebastian.huber@embedded-brains.de
Tue Nov 22 06:59:00 GMT 2016


Provide <memory.h> for all standard Newlib targets and remove
Cygwin-specific header.  Most POSIX like systems provide this historic
header.

Signed-off-by: Sebastian Huber <sebastian.huber@embedded-brains.de>
---
 newlib/libc/include/memory.h   |  4 ++++
 winsup/cygwin/include/memory.h | 15 ---------------
 2 files changed, 4 insertions(+), 15 deletions(-)
 create mode 100644 newlib/libc/include/memory.h
 delete mode 100644 winsup/cygwin/include/memory.h

diff --git a/newlib/libc/include/memory.h b/newlib/libc/include/memory.h
new file mode 100644
index 0000000..f4a14fc
--- /dev/null
+++ b/newlib/libc/include/memory.h
@@ -0,0 +1,4 @@
+#ifndef _MEMORY_H
+#define	_MEMORY_H
+#include <string.h>
+#endif /* !_MEMORY_H */
diff --git a/winsup/cygwin/include/memory.h b/winsup/cygwin/include/memory.h
deleted file mode 100644
index 42370a9..0000000
--- a/winsup/cygwin/include/memory.h
+++ /dev/null
@@ -1,15 +0,0 @@
-/* memory.h
-
-This file is part of Cygwin.
-
-This software is a copyrighted work licensed under the terms of the
-Cygwin license.  Please consult the file "CYGWIN_LICENSE" for
-details. */
-
-#ifndef _MEMORY_H
-#define _MEMORY_H
-
-/* This allows more things to compile. */
-#include <string.h>
-
-#endif /* _MEMORY_H */
-- 
1.8.4.5



More information about the Newlib mailing list