int foo(ap,bp) int* ap int* bp PREINIT: int a, b; CODE: a = ap ? *ap : -1; b = bp ? *bp : -1; RETVAL = a * b; OUTPUT: RETVAL