/*     
 * $RCSfile: time.c,v $
 *
 * x-kernel v3.3
 *
 * Copyright (c) 1993,1991,1990,1996  Arizona Board of Regents
 *
 * $Log: time.c,v $
 * Revision 1.1  1997/03/11  20:47:08  dorgival
 * Initial revision
 *
 * Revision 1.1  1997/03/11 20:47:08  dorgival
 * Initial revision
 *
 *
 */

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

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


