summaryrefslogtreecommitdiff
path: root/LibC/math.cpp
blob: 31b9b65e546e7e181cd949ce2a399e4db4d9965c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#include <math.h>
#include <assert.h>

extern "C" {

double pow(double x, double y)
{
    (void) x;
    (void) y;
    assert(false);
}

}