suppose I have:

int foo;

bar(&foo); <-- I want to duplicate this function call


suppose now, I have foo and bar in scheme land; how do I make the above function call? grepping for "\&" in gambit-c.txt brings up the #& box syntax, but I don't think that's what I want

thanks!