ack/mach/minix/libsys/_stime.c
1991-09-19 12:46:16 +00:00

11 lines
144 B
C

#include <lib.h>
#define stime _stime
#include <unistd.h>
PUBLIC int stime(top)
long *top;
{
_M.m2_l1 = *top;
return(_callx(FS, STIME));
}