summaryrefslogtreecommitdiff
path: root/tests/no_includes.c
blob: 89796d02b4446a71b7e8044ce9652e40b7653b05 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
typedef struct ___dietc_va_list { char ___dietc_va_list[24]; } va_list;

void foo(int x, int y) {
  x = y;
  va_list z;
  va_list a;
  z = a;
}

int main() {
  int x = 5;
  int y = 7;
  x = y;
  return x;
}
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback