POK(kernelpart)
memset.c File Reference
#include <libc.h>

Go to the source code of this file.

Functions

 __attribute__ ((weak))

Function Documentation

__attribute__ ( (weak)  )

Definition at line 20 of file memset.c.

{
unsigned char *d = (unsigned char *) dest;
while (count--)
{
*d++ = val;
}
return dest;
}