how to skip all the lint errors for a C file? Is there any way to skip all the lint errors for specific file with any options?
I am able to skip individual error with below option:
/*lint -save -e40 */
*lint -restore */
how to skip all the lint errors for a C file? Is there any way to skip all the lint errors for specific file with any options?
I am able to skip individual error with below option:
/*lint -save -e40 */
*lint -restore */
Long time passed since I last used Lint.
I hope I am not mistaking...
According to: http://www.gimpel.com/Discussion.cfm?ThreadID=3410
The syntax is:
/*lint -save -e* */
...
/*lint -restore */