mirror of
https://github.com/diegocr/libnix.git
synced 2026-09-12 03:30:29 +00:00
10 lines
172 B
C
10 lines
172 B
C
#include <proto/mathieeedoubtrans.h>
|
|
#include "stabs.h"
|
|
|
|
double log2(double x) {
|
|
return (IEEEDPLog(x) * 1.44269504088896340736);
|
|
}
|
|
|
|
ALIAS(log2f,log2);
|
|
ALIAS(log2l,log2);
|