ladybird/LibM/math.cpp
Andreas Kling 3f29a12d90 More compat work. Rename libraries from LibFoo.a => libfoo.a
This makes it more straightforward to build a cross-compiler toolchain.
Also move math stuff from LibC to LibM.
2019-02-26 13:30:57 +01:00

24 lines
232 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);
}
}