aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_addr_of_stacked.in
blob: 7a4d9ba7ebe23b9669c8f33819ff439fdc2c3d5d (plain)
1
2
3
4
5
6
7
8
#include <stdio.h>
void alter(int *y) { *y += 5; }
int main() {
  int x = 2;
  alter(&x);
  printf("*%d*\n", x);
  return 0;
}