ack/mach/sun3/libsys/stime.c

10 lines
108 B
C
Raw Normal View History

1987-02-20 14:36:01 +00:00
stime(tp)
long *tp;
{
struct { long l1,l2; } x;
x.l1 = *tp;
x.l2 = 0;
settimeofday(&x, (char *) 0);
}