#include #include "radd.h" int add(int,int); int *radd_1( operands *op) { static int retcode; retcode = add(op->x,op->y); return(&retcode); }