aboutsummaryrefslogtreecommitdiff
path: root/tests/core/test_fakestat.in
blob: d1dbed2941e387bf271481206c7a38d81fe0f969 (plain)
1
2
3
4
5
6
7
8
9
10
#include <stdio.h>
struct stat {
  int x, y;
};
int main() {
  stat s;
  s.x = 10;
  s.y = 22;
  printf("*%d,%d*\n", s.x, s.y);
}