
/*
 | On VMS we have the RAND() call and not RANDOM().
 */
random()
{
        return rand();
}


/*
 | No need for file locking on VMS. Hence, return success code.
 */
flock()
{
        return 0;
}

/* Determine default prototype stream to user
 * Returns: default prototype stream
 */

MAILSTREAM *default_proto ()
{
  extern MAILSTREAM STDPROTO;

  myusername ();                /* make sure initialized */
  return &STDPROTO;             /* return default driver's prototype */
}
