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

编辑器/阅读器

开发平台:

C/C++

  1. //    co-lc6.lnt
  2. //    Compiler Options for Lattice 6.00
  3. -clc6
  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-lc6.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(652)  // suppress message about #define of earlier declared symbols
  16. -elib(762)  // suppress message about multiple identical declarations and
  17. -elib(760)  // suppress message about multiple identical macro defs
  18. -elib(553)  // Suppress the warning that is given when a Lattice-supplied
  19.             // header file contains
  20.             //     #if FAMILY | DOS
  21.             // when, say, FAMILY is not defined.
  22. -$      // establish $ as an identifier character
  23. -e537       // suppress the repeated header file warning.
  24. -dDOS       // one of DOS, FAMILY or OS2 should be defined by the programmer
  25.             // If you prefer. remove this definition and specify one of
  26.             //  -dDOS, -dFAMILY, or -dOS2  on the command line.
  27. -esym(155,fndenv)  // conflict in dos.h vs. stdlib.h
  28. -esym(564,__c)     // ctype.h: __c variable value depends on order of evaluation
  29. -emacro(734,putc)   // don't complain about items being too large.
  30. -emacro(413,offsetof)  // use of NULL pointer creates a stir
  31. -emacro((???),va_arg)   // the va_arg() macro can yield 415, 416, 661, 662
  32. // 796 and 797 (out-of-bounds errors).
  33. //  The following functions exhibit variable return modes.
  34. //  That is, they may equally-usefully be called for a value
  35. //  as called just for their effects.  Accordingly we inhibit
  36. //  Warning 534 for these functions.
  37. //  Feel free to add to or subtract from this list.
  38. -esym(534,close,creat,fclose,fprintf,fputc)
  39. -esym(534,fputs,fscanf,fseek,fwrite,lseek,memcpy,memmove,memset)
  40. -esym(534,printf,puts,scanf,sprintf,sscanf,strcat,strcpy)
  41. -esym(534,strncat,strncpy,unlink,write)