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

编辑器/阅读器

开发平台:

C/C++

  1. //    co-tsc.lnt
  2. //    Compiler Options for TopSpeed C
  3. -ctsc
  4. //    This file contains options to allow PC-lint to process source
  5. //    files for your compiler.  It is used as follows:
  6. //
  7. //    lint  co-tsc.lnt  source-file(s)
  8. //
  9.             // while processing compiler (library) header files ...
  10. -wlib(1)    // sets the warning level within library headers to 1
  11.     // (no warnings, just syntax errors).  Comment out if you
  12.     // are actually linting library headers.  This
  13.     // option makes obsolete options of the form -elib(axxx) where
  14.     // xxx >= 400 which may be retained for historical reasons.
  15. -elib(20)   // support func defs like void f() = { hex-list };
  16. -elib(652)  // suppress message about #define of earlier declared symbols
  17. -elib(762)  // suppress message about multiple identical declarations and
  18. -elib(760)  // suppress message about multiple identical macro defs
  19. -elib(537)     // library headers may reinclude other library headers
  20.     //  ATTN TopSpeed users
  21.     //  in order to support the unusual syntax of inline functions
  22.     //  such as within inline.h without generating a host of errors
  23.     //  you may bracket such function definitions with
  24.     //     /*lint -e20 -e522 -e10 */
  25.     //          ...
  26.     //     /*lint -restore */
  27.     //  The function will be regarded as defined with the indicated
  28.     //  prototype.
  29. -d__TSC__=1    // The current TopSpeed version number, alter as you see fit
  30. -d__MSDOS__=1  // use this for DOS;  under OS/2 replace with __OS2__
  31. -function(exit,_exit)   // _exit() is like exit()
  32. -emacro(734,putc)   // don't complain about items being too large.
  33. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  34. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  35. // 796 and 797 (out-of-bounds errors).
  36. //  The following functions exhibit variable return modes.
  37. //  That is, they may equally-usefully be called for a value
  38. //  as called just for their effects.  Accordingly we inhibit
  39. //  Warning 534 for these functions.
  40. //  Feel free to add to or subtract from this list.
  41. -esym(534,close,creat,fclose,fprintf,fputc)
  42. -esym(534,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  43. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  44. -esym(534,strncat,strncpy,unlink,write)