Initial revision

This commit is contained in:
eck
1989-05-10 16:08:14 +00:00
parent f0cec58cf9
commit d2f7f252b2
20 changed files with 905 additions and 0 deletions

View File

@@ -0,0 +1,22 @@
/*
* (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
*/
/* $Header$ */
#include <errno.h>
#include <math.h>
#include "localmath.h"
double
log10(double x)
{
if (x <= 0) {
errno = EDOM;
return 0;
}
return log(x) / M_LN10;
}