mirror of
https://github.com/RGBCube/serenity
synced 2025-05-20 05:55:08 +00:00

This makes it more straightforward to build a cross-compiler toolchain. Also move math stuff from LibC to LibM.
23 lines
232 B
C++
23 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);
|
|
}
|
|
|
|
}
|