ref: f9deac96f486835bdef70ec5c6f7353cb7269c67 dir: /libkern/memset.c/
#include <lib9.h> void* memset(void *ap, int c, ulong n) { char *p; int m = (int)n; p = ap; while(m > 0) { *p++ = c; m--; } return ap; }