#include <libc.h>
Go to the source code of this file.
Definition at line 20 of file memset.c.
{ unsigned char *d = (unsigned char *) dest; while (count--) { *d++ = val; } return dest; }