/* 
 * $RCSfile: time.c,v $
 *
 * x-kernel v3.3
 *
 * Copyright (c) 1993,1991,1990,1996  Arizona Board of Regents
 *
 * $Log: time.c,v $
 * Revision 1.2  1996/01/30 20:52:53  slm
 * Updated copyright and version.
 *
 * Revision 1.1  1995/07/29  02:42:45  slm
 * Initial revision
 *
 * Revision 1.2.1.1  1994/11/12  19:13:46  hkaram
 * New branch
 *
 * Revision 1.2  1994/02/05  00:35:19  menze
 *   [ 1994/01/03          menze ]
 *   Removed prototype for gettimeofday
 *
 * Revision 1.1  1993/11/13  00:45:51  menze
 * Original version from UMass
 */

#include <sys/time.h>

void
xGetTime(where)
    unsigned char where[8];
{
    gettimeofday((struct timeval *)where, 0);
}
