Home | History | Annotate | Download | only in xcode-gcc
      1 #include <stdio.h>
      2 
      3 void check(int* h, long* k) {
      4   *h = 1;
      5   *k = 0;
      6   printf("%d\n", *h);
      7 }
      8 
      9 int main(void) {
     10   long k;
     11   check((int*)&k, &k);
     12   return 0;
     13 }
     14