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=tgeXqMtFhlmj2sAua/bNyldIN2Gxk7AWsfJ2q91Bpa4=; b=S5eHSXGG1r0tUAG2K4BmQRaSm06L+c+HJdR+Xr4lS/qCRQGwzVV4toLWgCbw7EB544 j8YnYP5m2AnX9xJnbb/scy7xNT0TJyGKJ80yekBPtmhZhMOWrNOjQfaFN0Jxs2zzeGUd 5Z7uvyKRd9tSoR2ALYEen/lvm6v5+3Ie7fP58= MIME-Version: 1.0 In-Reply-To: <201107011614.p61GEu8r015173@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> <201107011548 DOT p61FmWQW014052 AT envy DOT delorie DOT com> <201107011557 DOT p61FvXVP014582 AT envy DOT delorie DOT com> <201107011614 DOT p61GEu8r015173 AT envy DOT delorie DOT com> Date: Fri, 1 Jul 2011 19:44: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 7:14 PM, DJ Delorie wrote: > > Could you check the other prototypes too, and see if any othes aren't > needed? > > Maybe we should just comment them out for now, in case someone wants > to add them back in later, with a comment about this discussion... > As far as I can see, cabs() and cabsf() are the only two. As a side note, there are a lot of code depending on a _IEEE_LIBM macro to be defined to actually get called (such as log() would have returned __ieee754_log() from e_log.c), but that is off-topic, I guess. 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 16:43:07 -0000 @@ -51,7 +51,9 @@ SRC += w_scalb.c SRC += w_sinh.c SRC += w_sqrt.c -SRC += w_cabs.c +# complex math and complex.h +# header aren't provided yet. +#SRC += w_cabs.c SRC += w_drem.c SRC += s_asinh.c SRC += s_atan.c @@ -133,7 +135,9 @@ SRC += wf_scalb.c SRC += wf_sinh.c SRC += wf_sqrt.c -SRC += wf_cabs.c +# complex math and complex.h +# header aren't provided yet. +#SRC += wf_cabs.c SRC += wf_drem.c SRC += sf_asinh.c SRC += sf_atan.c -- O.S.