The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
/*
Check whether erfl and isnanl can be linked.
*/

#include <stdio.h>
#include <math.h>

int main(void) {
 long double rop, op = 0.6L;
 int ret;

 rop = erfl(op);
 ret = isnanl(op);

 return 0;
}