ack/lang/basic/lib/log.c

9 lines
96 B
C
Raw Normal View History

1988-07-25 11:40:57 +00:00
#define __NO_DEFS
#include <math.h>
#include "lib.h"
1984-11-29 14:22:02 +00:00
double _log(double x)
1984-11-29 14:22:02 +00:00
{
return log(x);
1984-11-29 14:22:02 +00:00
}