aboutsummaryrefslogtreecommitdiffstats
path: root/test/monniaux/frame_pointer/b.c
blob: dca8fbecd7f37c147d4d142b0abb6aa13c0da53b (plain)
1
2
3
4
5
6
7
8
9
10
11
#include <stdio.h>

unsigned get_size(void) {
  return 12;
}

void print_array(unsigned n, const int *t) {
  for(unsigned i=0; i<n; i++) {
    printf("%d\n", t[i]);
  }
}