mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-10 13:00:29 +03:00
9d05f6b7a7
This is really neat. :^)
15 lines
139 B
C++
15 lines
139 B
C++
#include <math.h>
|
|
#include <assert.h>
|
|
|
|
extern "C" {
|
|
|
|
double pow(double x, double y)
|
|
{
|
|
(void) x;
|
|
(void) y;
|
|
assert(false);
|
|
}
|
|
|
|
}
|
|
|