#define NOARGC  /* no arg count passing */
#define FIXARGC /* don't expect arg counts passed in */
/*
   return ASCII equivalent of c
*/
toascii(c) 
int c; 
{
  return (c);
}
