#include #include #include "malloc.h" int main(void) { char *s = my_calloc(sizeof(char), 11); strcpy(s, "just werks"); printf("%s\n", s); my_free(s); return 0; }