Subject: Re: c++ finds errors in math.h
To: =?iso-8859-1?Q?C=E9sar_Catri=E1n_Carre=F1o?= <ccatrian@eml.cc>
From: Martin Husemann <martin@duskware.de>
List: tech-pkg
Date: 04/26/2005 08:09:59
On Tue, Apr 26, 2005 at 12:36:23AM -0400, César Catrián Carreño wrote:
> > > /usr/include/math.h:384: error: declaration of C function `float rintf(float)'
> > >    conflicts with
> > > /usr/include/math.h:258: error: previous declaration `double rintf(double)'
> > 

> I could not find a rintf function in the source.

Look at your math.h at line 258 - there is a round() function declared.
Something in your source, before including math.h, maybe on the command line,
defines round as rintf.

Martin