aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/frame_pointer/a.c
blob: 644ccc9b76caae8cad9fe4299a1a8ab0e0bc0973 (plain)
1
2
3
4
5
6
7
8
9
extern unsigned get_size(void);
extern void print_array(unsigned n, const int *t);

int main() {
  unsigned n = get_size();
  int tab[n];
  for(unsigned i=0; i<n; i++) tab[i] = i;
  print_array(n, tab);
}