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

编辑器/阅读器

开发平台:

C/C++

  1. //    co-qc88.lnt
  2. //    Compiler Options for Code Works QC88, Version 1.1
  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-qc88.lnt  source-file(s)
  7. //
  8.             // while processing compiler (library) header files ...
  9. -wlib(1)    // sets the warning level within library headers to 1
  10.     // (no warnings, just syntax errors).  Comment out if you
  11.     // are actually linting library headers.  This
  12.     // option makes obsolete options of the form -elib(axxx) where
  13.     // xxx >= 400 which may be retained for historical reasons.
  14. -elib(652)  // suppress message about #define of earlier declared symbols
  15. -elib(762)  // suppress message about multiple identical declarations and
  16. -elib(760)  // suppress message about multiple identical macro defs
  17. -emacro(734,putc)   // don't complain about items being too large.
  18. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  19. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  20. // 796 and 797 (out-of-bounds errors).
  21. //  The following functions exhibit variable return modes.
  22. //  That is, they may equally-usefully be called for a value
  23. //  as called just for their effects.  Accordingly we inhibit
  24. //  Warning 534 for these functions.
  25. //  Feel free to add to or subtract from this list.
  26. -esym(534,close,creat,fclose,fprintf,fputc)
  27. -esym(534,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  28. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  29. -esym(534,strncat,strncpy,unlink,write)
  30. -esym(534,dos,free,itob,putc,putchar,ungetc)
  31. // For non-ANSI compilers we suppress messages 515 and 516
  32. // for functions known to have variable argument lists.
  33. // For ANSI compilers, header files should take care of this.
  34. -esym(515,fprintf,printf,sprintf,fscanf,scanf,sscanf)
  35. -esym(516,fprintf,printf,sprintf,fscanf,scanf,sscanf)
  36. -esym(515,dos,cprintf)
  37. -esym(516,dos,cprintf)
  38. -e746      // do not insist on prototypes