ladybird/LibC/math.cpp

15 lines
139 B
C++
Raw Normal View History

#include <math.h>
#include <assert.h>
extern "C" {
double pow(double x, double y)
{
(void) x;
(void) y;
assert(false);
}
}