I've been working on some older C code. I found out that there are quite some POSIX calls that are now outdated and marked deprecated in the manual pages.
What's the best way to check if there are still deprecated POSIX calls in your code? I'm thinking of either:
- special gcc warning options.
- some kind of lint tool detecting these calls.