blob: 12a81b9b9e728516b3197728d40942cfb2f39cba [file] [log] [blame]
#include <stdio.h>
void edge(int a) {
int x,y;
if(a>0)
x=0;
else
x=1;
y=x;
}
int foo(int bar){
int z = bar;
return z;
}