Home | History | Annotate | Download | only in link-dependency
      1 #include <stdio.h>
      2 #include <stdlib.h>
      3 int main() {
      4   void *p = malloc(1);
      5   printf("p: %p\n", p);
      6   return 0;
      7 }
      8