Skip to content

Commit

Permalink
LibM: Stub out ldexp().
Browse files Browse the repository at this point in the history
  • Loading branch information
awesomekling committed Mar 27, 2019
1 parent d1e55fb commit 2a85871
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions LibM/math.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,10 @@ double pow(double x, double y)
assert(false);
}

double ldexp(double, int exp)
{
(void)exp;
assert(false);
}

}

0 comments on commit 2a85871

Please sign in to comment.