blob: 827920563bde1fb76e934822e456161eca0dfe63 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* Copyright (C) 2007 Free Software Foundation
Contributed by Ollie Wild <aaw@google.com> */
#if __COUNTER__ != 0
#error __COUNTER__ != 0
#endif
#include "counter-3.h"
int main(void)
{
return __COUNTER__;
}
|