#include #include #include #include #include "MyMalloc.h" int main() { const char * str = "\n---- Running test0 ---\n"; write(1, str, strlen(str)); //simple test that does nothing requiring malloc() int i = 2; int j = 3; int k = i + j; // Added so it won't complain about -Werror k = k + 0; //print_list(); exit(0); }