diff options
Diffstat (limited to 'libiberty/memset.c')
-rw-r--r-- | libiberty/memset.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/libiberty/memset.c b/libiberty/memset.c index 5f54831..489ca17 100644 --- a/libiberty/memset.c +++ b/libiberty/memset.c @@ -1,6 +1,17 @@ /* memset This implementation is in the public domain. */ +/* + +@deftypefn Supplemental void* memset (void *@var{s}, int @var{c}, size_t @var{count}) + +Sets the first @var{count} bytes of @var{s} to the constant byte +@var{c}, returning a pointer to @var{s}. + +@end deftypefn + +*/ + #include <ansidecl.h> #ifdef __STDC__ #include <stddef.h> |