4.4BSD/usr/src/old/dbx/tests/cc/float.c

Compare this file to the similar file:
Show the results in this format:

/*
 * Test of floats and doubles.
 */

double f(x)
double x;
{
    return 3.14*x;
}

main()
{
    double x;
    float y;

    y = 3.0;
    x = f(y);
    return 0;
}