aboutsummaryrefslogtreecommitdiffstats
path: root/src/wchar/wmemmove.c
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/wchar/wmemmove.c17
1 files changed, 0 insertions, 17 deletions
diff --git a/src/wchar/wmemmove.c b/src/wchar/wmemmove.c
index c3cadbc..b531468 100644
--- a/src/wchar/wmemmove.c
+++ b/src/wchar/wmemmove.c
@@ -41,20 +41,3 @@ wchar_t* wmemmove(wchar_t* whither, const wchar_t* whence, size_t size)
return r;
}
-
-/**
- * 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 wide characters to copy.
- * @return `whither + size` is returned.
- */
-wchar_t* wmempmove(wchar_t* whither, const wchar_t* whence, size_t size)
-{
- return wmemmove(whither, whence, size) + size;
-}
-