/* 
 * time.c
 *
 * x-kernel v3.3
 *
 * Copyright (c) 1993,1991,1990,1996  Arizona Board of Regents
 */

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

void
xGetTime(where)
    XTime *where;
{
    struct timezone tz;

    gettimeofday((struct timeval *) where, &tz);
}
