/*
 * This is a program for testing function returns and local scoping.  The
 * result should be a value of 3 in memory locations 0 and 1.
 */

int i,j;

void main() {
    i = f(3);
}

int f(int x) {
    j = x;
    return x;
}