co-sc.lnt
上传用户:filter2008
上传日期:2010-03-12
资源大小:2959k
文件大小:3k
源码类别:

编辑器/阅读器

开发平台:

C/C++

  1. //    co-sc.lnt
  2. //    Compiler Options for Symantec C++ prior to 7.0
  3. //    This file contains options to allow PC-lint to process source
  4. //    files for your compiler.  It is used as follows:
  5. //
  6. //    lint  co-sc.lnt  source-file(s)
  7. //
  8. -cmsc       // Enable Microsoft keywords
  9.     // Additional reserved words:
  10. +rw(__import,__export,__ss,__handle,__iob)
  11.     // while processing compiler (library) header files ...
  12. -wlib(1)    // sets the warning level within library headers to 1
  13.     // (no warnings, just syntax errors).  Comment out if you
  14.     // are actually linting library headers.  This
  15.     // option makes obsolete options of the form -elib(axxx) where
  16.     // xxx >= 400 which may be retained for historical reasons.
  17. -elib(553)  // use of undefined preprocessor variables like #if __STDC__
  18. -elib(652)  // suppress message about #define of earlier declared symbols
  19. -elib(762)  // suppress message about multiple identical declarations and
  20. -elib(761)  // suppress superseded message for size_t and wchar_t
  21. -elib(760)  // suppress message about multiple identical macro defs
  22. // these are for iostream.h
  23. -elib(1724) // argument to copy construct should be const ref
  24. -elib(1721) // unusual operator =() declaration
  25. -elib(1722) // assignment operator does not return ref
  26. -elib(1704) // private constructors
  27. -elib(1720) // assignment op has non-const parameter
  28. -elib(655)  // bitwise operator combining compatible enum's
  29. -elib(641)  // converting enum's to int
  30. // needed for windows.h
  31. -elib(514)           // unusual use of a boolean 
  32. -elib(1717)          // several empty prototypes
  33. -esym(714,WinMain)   // WinMain is only indirectly referenced
  34. -e793                // inhibit 'ANSI limit reached'
  35. // suppression of errors within expansion of macros
  36.  -emacro(507,FP_OFF)   // inhibit loss of information message.
  37. --emacro(507,offsetof) // inhibit loss of info message in macro
  38. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  39.  -emacro(792,assert)   // inhibit void cast of void message
  40. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  41. // 796 and 797 (out-of-bounds errors).
  42.         // We now support __declspec directly so that the following
  43.         // option is now commented out.  If trouble ensues you can
  44.         // once again disable __declspec through this option.
  45.         // -d__declspec()= // ignore this construct
  46. -d_declspec=__declspec  // the single '_' version is occasionally used
  47. // The following functions exhibit variable return modes.
  48. // That is, they may equally-usefully be called for a value
  49. // as called just for their effects.  Accordingly we inhibit
  50. // Warning 534 for these functions.
  51. // Feel free to add to or subtract from this list.
  52. -esym(534,close,creat,fclose,fflush,fprintf,fputc,wsprintf)
  53. -esym(534,_fputc,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  54. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  55. -esym(534,strncat,strncpy,unlink,write)
  56. -esym(534,__assertfail)
  57. -function(exit,__assertfail)  // __assertfail() is like exit()