#include #include #include int main (void) { char *p; p = malloc(10); free(p); return EXIT_SUCCESS; }