minix/lib/posix/_stime.c
2010-01-26 10:59:01 +00:00

13 lines
161 B
C

#include <lib.h>
#define stime _stime
#include <time.h>
PUBLIC int stime(top)
long *top;
{
message m;
m.m2_l1 = *top;
return(_syscall(MM, STIME, &m));
}