diff options
Diffstat (limited to 'src/string/memmove.c')
| -rw-r--r-- | src/string/memmove.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/string/memmove.c b/src/string/memmove.c index 0ae3d309..0de82247 100644 --- a/src/string/memmove.c +++ b/src/string/memmove.c @@ -27,6 +27,8 @@ void * memmove(void *s1, const void *s2, size_t n) return s1; } +__check_3(void *, 0, memmove, void *, const void *, size_t) + /*** copies ARGUMENT(n) bytes of memory from the object at ARGUMENT(s2) to the object at ARGUMENT(s1). If ARGUMENT(s1) and ARGUMENT(s2) overlap, the memory |
