ack/lang/basic/lib/log.c
2018-06-24 00:35:51 +02:00

9 lines
96 B
C

#define __NO_DEFS
#include <math.h>
#include "lib.h"
double _log(double x)
{
return log(x);
}