Suppressing Warning Messages with lint Comments

The UNIX lint program attempts to detect features of a C or C++ program that are likely to be bugs, non-portable, or wasteful. The compiler recognizes three lint-specific comments:

  1. /*ARGSUSED*/
  2. /*NOTREACHED*/
  3. /*VARARGS*/

Like the lint program, the compiler suppresses warnings about certain conditions when you place these comments at specific points in the source.