Partially implement -Wdeprecated-declarations.
[cparser] / parsetest / cp_error032.c
1 int printf(const char *str, ...);
2
3 int main(void) {
4         printf("%d\n", (int) sizeof (const void*));
5         return 0;
6 }