aboutsummaryrefslogtreecommitdiffstats
path: root/src/string/memmove.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/string/memmove.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/string/memmove.c b/src/string/memmove.c
index 0acc47b..41871c6 100644
--- a/src/string/memmove.c
+++ b/src/string/memmove.c
@@ -40,20 +40,3 @@ void* memmove(void* whither, const void* whence, size_t size)
return whither;
}
-
-/**
- * Copy a memory segment to another, possibly overlapping, segment.
- *
- * This is a slibc extension added for completeness.
- * It is only available if GNU extensions are available.
- *
- * @param whither The destination memory segment.
- * @param whence The source memory segment.
- * @param size The number of bytes to copy.
- * @return `whither + size` is returned.
- */
-void* mempmove(void* whither, const void* whence, size_t size)
-{
- return (char*)memmove(whither, whence, size) + size;
-}
-