Partially implement -Wdeprecated-declarations.
[cparser] / parsetest / precedence.c
1 int printf(const char *std, ...);
2
3 int h(int a, int b) {
4         return 1 << a % b;
5 }
6
7 int main(void) {
8         printf("%d\n", h(5, 2));
9         return 0;
10 }