minix/lib/posix/_stime.c
2009-11-09 10:26:00 +00:00

14 lines
187 B
C

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