/* Check whether erfl and isnanl can be linked. */ #include #include int main(void) { long double rop, op = 0.6L; int ret; rop = erfl(op); ret = isnanl(op); return 0; } #### my $out = `$cc $opt -o try.exe -x c try.in -lm 2>&1`; #### my $diag = $^O =~ /mswin32/i ? `try.exe 2>&1` : `./try.exe 2>&1`; #### try.in:12:8: warning: incompatible implicit declaration of built-in function 'erfl'