1 2 3 4 5 6 7 8 9
void unknown_fn_1 (void *); void test_1 (int co, int y) { void *p = __builtin_malloc (1024); void **q; unknown_fn_1 (&q); *q = p; }