Skip to content
Permalink
9d13fb2413
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
26 lines (22 sloc) 425 Bytes
#include <math.h>
#include <stdio.h>
#include <errno.h>
long double
__erfl (long double x)
{
fputs ("__erfl not implemented\n", stderr);
__set_errno (ENOSYS);
return 0.0;
}
weak_alias (__erfl, erfl)
stub_warning (erfl)
long double
__erfcl (long double x)
{
fputs ("__erfcl not implemented\n", stderr);
__set_errno (ENOSYS);
return 0.0;
}
weak_alias (__erfcl, erfcl)
stub_warning (erfcl)
#include <stub-tag.h>