minix/lib/posix/_stime.c
2005-04-21 14:53:53 +00:00

14 lines
187 B
C
Executable file

#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(FS, STIME, &m));
}