On 22 April 2014 10:36, Zhenqiang Chen <[email protected]> wrote:
>> +float f1 (float a, float b, float c, float d)
>> +{
>> + if (a > 0.0)
>> + return c;
>> + else
>> + return 2.0;
>> +}
>> +
>> +double f2 (double a, double b, double c, double d)
>> +{
>> + if (a > b)
>> + return c;
>> + else
>> + return d;
>> +}
OK, but please GNUize the test case, function names start in column 1
and the test case file names should end in _1.c
/Marcus
