summaryrefslogtreecommitdiff
path: root/libc/sysdeps/ieee754/dbl-wrap/e_log.c
blob: 557775f0241eabdcc275b7fff2c01ca51b828791 (plain)
1
2
3
4
5
6
7
8
#include "dbl-wrap.h"

wrap_type_t WRAP_FUNC (__ieee754_log) (wrap_type_t);

double __ieee754_log (double x)
{
  return (double) WRAP_FUNC (__ieee754_log) ((wrap_type_t) x);
}