#include "internal.h" int mem·set(void *addr, int c, uintptr len) { char *a = addr; while(len-- > 0) *a++ = c; return 0; }