ladybird/LibM/math.cpp
2019-03-27 01:41:55 +01:00

30 lines
301 B
C++

#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);
}
double ldexp(double, int exp)
{
(void)exp;
assert(false);
}
}