2005-04-21 16:53:53 +02:00
|
|
|
#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;
|
2005-05-31 11:50:51 +02:00
|
|
|
return(_syscall(MM, STIME, &m));
|
2005-04-21 16:53:53 +02:00
|
|
|
}
|