From a6c1ed4716cf02626ea035beb6dd4a921642ba80 Mon Sep 17 00:00:00 2001 From: PikalaxALT Date: Wed, 3 Jan 2018 17:39:24 -0700 Subject: Use libc from agbcc instead of standalone newlib\nYou must have AGBCC commit 80d029caec189587f8b9294b6c8a5a489b8f5f88 in order to compile pmd_red.gba --- newlib/libm/mathfp/er_gamma.c | 32 -------------------------------- 1 file changed, 32 deletions(-) delete mode 100644 newlib/libm/mathfp/er_gamma.c (limited to 'newlib/libm/mathfp/er_gamma.c') diff --git a/newlib/libm/mathfp/er_gamma.c b/newlib/libm/mathfp/er_gamma.c deleted file mode 100644 index 6246c88..0000000 --- a/newlib/libm/mathfp/er_gamma.c +++ /dev/null @@ -1,32 +0,0 @@ - -/* @(#)er_gamma.c 5.1 93/09/24 */ -/* - * ==================================================== - * Copyright (C) 1993 by Sun Microsystems, Inc. All rights reserved. - * - * Developed at SunPro, a Sun Microsystems, Inc. business. - * Permission to use, copy, modify, and distribute this - * software is freely granted, provided that this notice - * is preserved. - * ==================================================== - * - */ - -/* gamma_r(x, signgamp) - * Reentrant version of the logarithm of the Gamma function - * with user provide pointer for the sign of Gamma(x). - * - * Method: See lgamma_r - */ - -#include "fdlibm.h" - -#ifdef __STDC__ - double gamma_r(double x, int *signgamp) -#else - double gamma_r(x,signgamp) - double x; int *signgamp; -#endif -{ - return lgamma_r(x,signgamp); -} -- cgit v1.2.3