LCLint Output

LCLint 2.2 --- 25 Aug 96

modify.c: (in function setx)
modify.c:4,3: Undocumented modification of *y: *y = *x
  An externally-visible object is modified by a
  function, but not listed in its modifies clause.
  (-mods will suppress message)
modify.c:5,1: Suspect object listed in modifies of
                 setx not modified: *x
  An object listed in the modifies clause is not
  modified by the implementation of the function. The
  modification may not be detected if it is done
  through a call to an unspecified function. (-mustmod
  will suppress message)
   modify.c:1,6: Declaration of setx
modify.c:1,6: Function setx exported but not declared
                 in header file
  A declaration is exported, but does not appear in a
  header file. (-exportheader will suppress message)
   modify.c:5,1: Definition of setx
modify.c:7,6: Function sety exported but not declared
                 in header file
   modify.c:11,1: Definition of sety

Finished LCLint checking --- 4 code errors found