Do not warn about an ununsed function, if it is marked with __attribute__((used)).
[cparser] / parsetest / cp_error009.c
1 char str[] = { "Hallo" };
2
3 int main(void) {
4         puts(str);
5         return 0;
6 }