aboutsummaryrefslogtreecommitdiffstats
path: root/test_deliverable/testcases/test_NOT.c
blob: 1504d42e9a06d7c65547c5bf92e54f4faf0f367c (plain)
1
2
3
4
5
6
int not(int a)
{
    a *= 4;

    return !a;
}