Re: minor yacc warnings

2003-02-07 Thread David O'Brien
The problem with this fix is it depends on a FreeBSD'ism -- "__unused". One must be able to take a generated parser and run it on non-FreeBSD systems. -Dlint really should be the way to avoid this warning. On Mon, Feb 03, 2003 at 09:24:10PM -0700, Chad David wrote: > We are having minor problems w

Re: minor yacc warnings

2003-02-05 Thread Chad David
On Wed, Feb 05, 2003 at 09:46:56AM -0800, David O'Brien wrote: > On Mon, Feb 03, 2003 at 09:24:10PM -0700, Chad David wrote: > > We are having minor problems with a newer gcc generating warnings > > for yacc due to yyrcsid not being used. Does anyone object to the > > following patch to skeleton.c

Re: minor yacc warnings

2003-02-05 Thread David O'Brien
On Mon, Feb 03, 2003 at 09:24:10PM -0700, Chad David wrote: > We are having minor problems with a newer gcc generating warnings > for yacc due to yyrcsid not being used. Does anyone object to the > following patch to skeleton.c or have a better way of handling this? > -Dlint causes other problems.