diff options
Diffstat (limited to 'src/string/mem/memcpy.c')
-rw-r--r-- | src/string/mem/memcpy.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/mem/memcpy.c b/src/string/mem/memcpy.c index fcda29d..ccf716b 100644 --- a/src/string/mem/memcpy.c +++ b/src/string/mem/memcpy.c @@ -26,6 +26,8 @@ * @param whence The source memory segment. * @param size The number of bytes to copy. * @return `whither` is returned. + * + * @since Always. */ void* memcpy(void* restrict whither, const void* restrict whence, size_t size) { |