3 #%C [-P] [-C] other options
4 # cpp is a wrapper for wcc to make it work like other cpp's
5 # -P omit #line directives from the output
6 # -C pass comments through to the output
8 #Submitted by Norton T. Allen (allen@huarp.harvard.edu)
10 typeset lines=l comments="" redir=""
13 -P) lines=""; shift; continue;;
14 -C) comments=c; shift; continue;;
22 cc -c -Wc,-p$lines$comments -Wc,-pw=0 $* $redir |
23 awk 'NR>1||NF>0 {sub("^ ","");print}'
24 [ -n "$redir" ] && rm -f $redir