[comp.sys.next] Lint or similar c-syntax tools

erik@zeus.uucp (Erik Schumacher) (03/03/91)

Does anybody know if lint or a similar c-syntax checker is around for the
NeXT ??  

Erik Schumacher
Optical Sciences Center
University of Arizona

erik@zeus.opt-sci.arizona.edu

melling@cs.psu.edu (Michael D Mellinger) (03/04/91)

In article <2494@amethyst.math.arizona.edu> erik@zeus.uucp (Erik Schumacher) writes:

   Does anybody know if lint or a similar c-syntax checker is around for the
   NeXT ??  

cc -Wall -O does a good analysis of your program.  You need
optimization to get warnings about unused variables, etc.

-Mike