2019-02-26 09:30:57 -03:00
|
|
|
#include <LibC/assert.h>
|
|
|
|
|
#include <LibM/math.h>
|
|
|
|
|
|
|
|
|
|
extern "C" {
|
|
|
|
|
|
|
|
|
|
double cos(double)
|
|
|
|
|
{
|
|
|
|
|
assert(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double sin(double)
|
|
|
|
|
{
|
|
|
|
|
assert(false);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
double pow(double x, double y)
|
|
|
|
|
{
|
|
|
|
|
(void)x;
|
|
|
|
|
(void)y;
|
|
|
|
|
assert(false);
|
|
|
|
|
}
|
|
|
|
|
|
2019-03-26 21:41:55 -03:00
|
|
|
double ldexp(double, int exp)
|
|
|
|
|
{
|
|
|
|
|
(void)exp;
|
|
|
|
|
assert(false);
|
|
|
|
|
}
|
|
|
|
|
|
2019-02-26 09:30:57 -03:00
|
|
|
}
|