1984-11-29 14:22:02 +00:00
|
|
|
/*
|
1988-07-25 11:13:26 +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".
|
1984-11-29 14:22:02 +00:00
|
|
|
*
|
1988-07-25 11:13:26 +00:00
|
|
|
* Author: Ceriel J.H. Jacobs
|
1984-11-29 14:22:02 +00:00
|
|
|
*/
|
|
|
|
|
1994-06-24 11:31:16 +00:00
|
|
|
/* $Id$ */
|
1984-11-29 14:22:02 +00:00
|
|
|
|
1988-07-25 11:40:57 +00:00
|
|
|
#define __NO_DEFS
|
1988-07-25 11:13:26 +00:00
|
|
|
#include <math.h>
|
1984-11-29 14:22:02 +00:00
|
|
|
|
2013-05-14 15:11:29 +00:00
|
|
|
double _log(double x)
|
1984-11-29 14:22:02 +00:00
|
|
|
{
|
2013-05-14 15:11:29 +00:00
|
|
|
return log(x);
|
1984-11-29 14:22:02 +00:00
|
|
|
}
|