summaryrefslogtreecommitdiff
path: root/libc/sysdeps/ieee754/ldbl-wrap/s_erfl-wrap.c
blob: 837f97b2d79256fe6ffd9263316a0e5cbfd56be5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#include "ldbl-wrap.h"

wrap_type_t WRAP_FUNC (__erf) (wrap_type_t);

long double
__erfl (long double x)
{
  return (long double) WRAP_FUNC (__erf) ((wrap_type_t) x);
}

wrap_type_t WRAP_FUNC (__erfc) (wrap_type_t);

long double
__erfcl (long double x)
{
  return (long double) WRAP_FUNC (__erfc) ((wrap_type_t) x);
}