Tagged Questions

2
votes
2answers
317 views

Unnamed parameters in C

In C, unlike C++, all parameters to a function definition must be named. Instead of quashing "unused parameter" errors with (void)a, or openly using __attribute__((unused)), I've created the ...
2
votes
7answers
2k views

Why gcc gives error of unused variable for local variables but not for global variables?

I have a question regarding gcc. Why I get an error of unused variable when I define the variable locally in a function but not when the variable is global in a unique file?. I can understand that it ...
1
vote
1answer
216 views

Why does GCC seem much more verbose in Ubuntu 10?

I have recently made a cp clone (for University) and I happened to discover something I had never got the chance to. This applies at least to GCC compiling a C source. I did the main development of ...
0
votes
2answers
23 views

Can GCC issue an error when a specific function is not used?

I work on a large project where many functions are not used. I would like to be able to tag some of them as required, and have ld issue an error if it’s not used in the project it’s linking.