/* 
 * time.c
 *
 * x-kernel v3.3
 *
 * Copyright (c) 1996,1993,1991,1990  Arizona Board of Regents
 *
 * $Revision: 1.3 $
 * $Date: 1996/06/03 19:34:22 $
 */

#include <sys/time.h>
#include <xtime.h>
#include <sys/utsname.h>

extern int gettimeofday();

void
xGetTime(where)
XTime *where;
{
    gettimeofday((struct timeval *)where, NULL);
}
