/* 
 * time.c
 *
 * x-kernel v3.3
 *
 * Copyright (c) 1993,1991,1990,1996  Arizona Board of Regents
 *
 * $Revision: 1.2 $
 * $Date: 1996/01/31 16:29:53 $
 */

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

#ifdef __STDC__

int	gettimeofday( struct timeval *, struct timezone * );

#endif

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


