/* return the address of arg */
loc_(arg)
int *arg;
{
     return (int) arg;
}
/* c program to call library routine times*/

times_ (iarg)
int *iarg ;
{
    times (iarg) ;
}
