/* test_isnanl.c */ #include int test_isnanl(long double x) { return isnanl(x); } #### #include #include #include int main(int argc, char *argv[]) { long double x = strtold(argv[1], NULL); printf("%d", isnanl(x)); printf("%Lf", erfl(x)); return 0; }