diff options
Diffstat (limited to 'libiberty/memmove.c')
-rw-r--r-- | libiberty/memmove.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/libiberty/memmove.c b/libiberty/memmove.c index 176c326..3ec7320 100644 --- a/libiberty/memmove.c +++ b/libiberty/memmove.c @@ -1,5 +1,17 @@ /* Wrapper to implement ANSI C's memmove using BSD's bcopy. */ /* This function is in the public domain. --Per Bothner. */ + +/* + +@deftypefn Supplemental void* memmove (void *@var{from}, const void *@var{to}, size_t @var{count}) + +Copies @var{count} bytes from memory area @var{from} to memory area +@var{to}, returning a pointer to @var{to}. + +@end deftypefn + +*/ + #include <ansidecl.h> #ifdef __STDC__ #include <stddef.h> |