#define NOARGC  /* no arg count passing */
#define FIXARGC /* don't expect arg counts passed in */

/*
   This software is copyright 1989 by John Dunning.  See the file
   'COPYLEFT.JRD' for the full copyright notice.
*/

/*
   return <0,   0,  >0  for
         s<t, s=t, s>t
*/
strcmp(s, t) 
char *s, *t; 
{
  while(*s == *t) 
    {
    if(*s == 0) return (0);
    ++s; ++t;
    }
  return (*s - *t);
}

