From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: by sourceware.org (Postfix, from userid 2134) id 220BD3858D33; Fri, 5 May 2023 18:51:19 +0000 (GMT) DKIM-Filter: OpenDKIM Filter v2.11.0 sourceware.org 220BD3858D33 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=sourceware.org; s=default; t=1683312679; bh=ZOGKlPBKOhkO6S/XxeJCzPgiAYkJtYlO/9Lys7ONP74=; h=From:To:Subject:Date:From; b=HFAD3IfvA2l0/1uVFWumzBrh9A6eThymrMQpQ/znPeuhoZNdh830D/uPgFK3376oL MoYH03yPjTgwteL6XDpUCja+ZSuGlL5MajUq7Ew3zM1w0z+sJkcjLbR1rUbzRnjHEJ U2hDkTwQkJNT8GTJk5cxJp1E7gohF6053M0SEB6U= Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable From: Jeff Johnston To: newlib-cvs@sourceware.org Subject: [newlib-cygwin] Move signgm.c from libc/reent to libm/math X-Act-Checkin: newlib-cygwin X-Git-Author: Jennifer Averett X-Git-Refname: refs/heads/master X-Git-Oldrev: 3bee68248fc8e164a8bb6bba3f105b10fdec8a71 X-Git-Newrev: 742b8db95d93e4edba52bbf84afe64c9324ce89b Message-Id: <20230505185119.220BD3858D33@sourceware.org> Date: Fri, 5 May 2023 18:51:19 +0000 (GMT) List-Id: https://sourceware.org/git/gitweb.cgi?p=3Dnewlib-cygwin.git;h=3D742b8db95d9= 3e4edba52bbf84afe64c9324ce89b commit 742b8db95d93e4edba52bbf84afe64c9324ce89b Author: Jennifer Averett Date: Fri May 5 13:17:41 2023 -0500 Move signgm.c from libc/reent to libm/math Diff: --- newlib/libc/reent/Makefile.inc | 1 - newlib/libm/math/Makefile.inc | 1 + newlib/{libc/reent =3D> libm/math}/signgam.c | 0 3 files changed, 1 insertion(+), 1 deletion(-) diff --git a/newlib/libc/reent/Makefile.inc b/newlib/libc/reent/Makefile.inc index b4b7f7596..38ddf5766 100644 --- a/newlib/libc/reent/Makefile.inc +++ b/newlib/libc/reent/Makefile.inc @@ -14,7 +14,6 @@ libc_a_SOURCES +=3D \ %D%/readr.c \ %D%/renamer.c \ %D%/signalr.c \ - %D%/signgam.c \ %D%/sbrkr.c \ %D%/statr.c \ %D%/timesr.c \ diff --git a/newlib/libm/math/Makefile.inc b/newlib/libm/math/Makefile.inc index 1b61d6dd3..d2a45bf13 100644 --- a/newlib/libm/math/Makefile.inc +++ b/newlib/libm/math/Makefile.inc @@ -15,6 +15,7 @@ %D%/w_scalb.c %D%/w_sinh.c %D%/w_sqrt.c \ %D%/w_sincos.c \ %D%/w_drem.c \ + %D%/signgam.c \ %D%/s_asinh.c %D%/s_atan.c %D%/s_ceil.c \ %D%/s_cos.c %D%/s_erf.c %D%/s_fabs.c %D%/s_floor.c \ %D%/s_frexp.c %D%/s_ldexp.c \ diff --git a/newlib/libc/reent/signgam.c b/newlib/libm/math/signgam.c similarity index 100% rename from newlib/libc/reent/signgam.c rename to newlib/libm/math/signgam.c