mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-25 17:10:23 +00:00
9d05f6b7a7
This is really neat. :^)
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);
|
|
}
|
|
|
|
}
|
|
|