aboutsummaryrefslogtreecommitdiffstats
path: root/testing/testcases/test_ADD_driver.c
blob: 9e74f326845de1786d42614a5ac35b2c4abd652b (plain)
1
2
3
4
5
6
7
8
int f(int a, int b);

int main()
{
    int r=f(10,11);
    
    return r == 21;
}