/* 
 * time.c
 *
 * x-kernel v3.3
 *
 * Copyright (c) 1993,1991,1990,1996  Arizona Board of Regents
 *
 * $Revision: 1.1 $
 * $Date: 1996/11/22 15:48:40 $
 */

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

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


