X-Authentication-Warning: delorie.com: mail set sender to djgpp-workers-bounces using -f X-Recipient: djgpp-workers AT delorie DOT com DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type; bh=Gl4F3RB3EfSKGYzRMeSGKtX2vI0ei7qzDEzXx9uJH6s=; b=BuU7QMnSrM7D0WYB67XiU7axwmhNH2bHmle62uMqp/8cqYGtopsmzUDi4ECm/lWd6i rtIPIm6wWyD2AuAoA5t8fFW1aUdN/IlPJU43IMquxTs0oVZR+hrLsYBe8up++6PIyvNm uDE8zlMDrd0ebv9g/cKJneXfC9ZXSaO4rjDtA= MIME-Version: 1.0 In-Reply-To: <201107011539.p61FdYjI013658@envy.delorie.com> References: <83tyb6qce3 DOT fsf AT gnu DOT org> <201107011526 DOT p61FQs24012782 AT envy DOT delorie DOT com> <201107011539 DOT p61FdYjI013658 AT envy DOT delorie DOT com> Date: Fri, 1 Jul 2011 18:45:27 +0300 Message-ID: Subject: Re: gcc-4.4: conflicting types for built-in function 'cabs' and 'cabsf' From: Ozkan Sezer To: djgpp-workers AT delorie DOT com Content-Type: text/plain; charset=ISO-8859-1 Reply-To: djgpp-workers AT delorie DOT com Errors-To: nobody AT delorie DOT com X-Mailing-List: djgpp-workers AT delorie DOT com X-Unsubscribes-To: listserv AT delorie DOT com Precedence: bulk On Fri, Jul 1, 2011 at 6:39 PM, DJ Delorie wrote: > >> And why does even djgpp libm bother with cabs[f] ? > > Probably leftovers from the old cygnus math library. > Then I suggest removing those two from build, like : Index: src/libm/math/makefile =================================================================== RCS file: /cvs/djgpp/djgpp/src/libm/math/makefile,v retrieving revision 1.3 diff -u -r1.3 makefile --- src/libm/math/makefile 22 Mar 2003 12:27:27 -0000 1.3 +++ src/libm/math/makefile 1 Jul 2011 15:42:53 -0000 @@ -51,7 +51,6 @@ SRC += w_scalb.c SRC += w_sinh.c SRC += w_sqrt.c -SRC += w_cabs.c SRC += w_drem.c SRC += s_asinh.c SRC += s_atan.c @@ -133,7 +132,6 @@ SRC += wf_scalb.c SRC += wf_sinh.c SRC += wf_sqrt.c -SRC += wf_cabs.c SRC += wf_drem.c SRC += sf_asinh.c SRC += sf_atan.c -- O.S.