*** empty log message ***
[binutils-gdb.git] / libiberty / memset.c
index 5f54831e83c468a62ecc2f59c90a50e8615a09f3..489ca1748157c034d17c376d7cf725c8c4ed784b 100644 (file)
@@ -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>