diff options
Diffstat (limited to 'src/mtx_pow.c')
-rw-r--r-- | src/mtx_pow.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/mtx_pow.c b/src/mtx_pow.c index f8b0212..639b7d0 100644 --- a/src/mtx_pow.c +++ b/src/mtx_pow.c @@ -16,14 +16,6 @@ /* mtx_.^ */ /* LATER: do a mtx_pow, mtx_^ */ -#ifdef __APPLE__ -/* there is no such thing like powf on apple... */ -static inline float powf (float v, float p) -{ - return (float) pow((double)v, (double) p); -} -#endif /* __APPLE__ */ - static t_class *mtx_powelement_class, *mtx_powscalar_class; static void mtx_powelement_matrix(t_mtx_binmtx *x, t_symbol *s, int argc, t_atom *argv) |