Welcome to mirror list, hosted at ThFree Co, Russian Federation.

log.h « headers « spu « machine « libm « newlib - cygwin.com/git/newlib-cygwin.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 842abbf5e411915eb4b2c9a0f2130253f706d109 (plain)
1
2
3
4
5
6
#include "headers/logd2.h"

static __inline double _log(double x)
{
  return spu_extract(_logd2(spu_promote(x, 0)), 0);
}