mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-04-25 05:55:13 +00:00
14 lines
139 B
C++
14 lines
139 B
C++
#include <math.h>
|
|
#include <assert.h>
|
|
|
|
extern "C" {
|
|
|
|
double pow(double x, double y)
|
|
{
|
|
(void) x;
|
|
(void) y;
|
|
assert(false);
|
|
}
|
|
|
|
}
|
|
|