ack/lang/cem/libcc.ansi/core/math/log10.c

40 lines
547 B
C
Raw Normal View History

1989-05-10 16:08:14 +00:00
/*
* (c) copyright 1988 by the Vrije Universiteit, Amsterdam, The Netherlands.
* See the copyright notice in the ACK home directory, in the file "Copyright".
*
* Author: Ceriel J.H. Jacobs
*/
1994-06-24 14:02:31 +00:00
/* $Id$ */
1989-05-10 16:08:14 +00:00
2018-06-21 20:33:47 +00:00
#include <math.h>
#include <errno.h>
#include <ack/config.h>
2018-06-21 20:33:47 +00:00
#include "localmath.h"
1989-05-10 16:08:14 +00:00
#if ACKCONF_WANT_FLOAT
1989-05-10 16:08:14 +00:00
double
log10(double x)
{
2018-06-21 20:33:47 +00:00
if (__IsNan(x))
{
1991-03-19 16:39:40 +00:00
errno = EDOM;
return x;
}
2018-06-21 20:33:47 +00:00
if (x < 0)
{
1989-05-10 16:08:14 +00:00
errno = EDOM;
return -HUGE_VAL;
}
2018-06-21 20:33:47 +00:00
else if (x == 0)
{
errno = ERANGE;
return -HUGE_VAL;
1989-05-10 16:08:14 +00:00
}
return log(x) / M_LN10;
}
#endif