mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 06:15:06 +00:00
29 lines
301 B
C++
29 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);
|
|
}
|
|
|
|
}
|