1 2 3 4 5 6 7 8 9 10 11 12
#include <stdlib.h> #include "test_util.h" OPTNONE int main(void) { char *p = malloc(16); if (!p) { return 1; } free(p + 1); return 0; }