Files
circ/examples/C/mpc/playground.c
2022-08-13 22:49:45 -04:00

11 lines
207 B
C

int foo(int* x){
int ret = 0;
for(int i = 0; i < 4; i++){
ret += x[i];
}
return ret;
}
int main(__attribute__((private(0))) int a[4], __attribute__((private(1))) int b) {
return foo(a) + b;
}