4.1cBSD/usr/src/ucb/dbx/test/float.c

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

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

main()
{
    double x;

    x = f(3.0);
}