notaz.gp2x.de
/
picodrive.git
/ blame_incremental
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
blob
|
blame
(non-incremental) |
history
|
HEAD
Menu: Use function plat_get_skin_dir to locate bg image
[picodrive.git]
/
platform
/
gp2x
/
code940
/
uClibc
/
wrappers.c
This page requires JavaScript to run. Use
this page
instead.
... / ...
Commit
Line
Data
1
#include "math.h"
\r
2
\r
3
double pow(double x, double y)
\r
4
{
\r
5
return __ieee754_pow(x, y);
\r
6
}
\r
7
\r
8
\r
9
double log(double x)
\r
10
{
\r
11
return __ieee754_log(x);
\r
12
}
\r