Added lance entry to drivers.conf.
[minix3-old.git] / lib / posix / _stime.c
blob7158019d51e48b62e69372e551e369e9f1e2af4c
1 #include <lib.h>
2 #define stime _stime
3 #include <minix/minlib.h>
4 #include <time.h>
6 PUBLIC int stime(top)
7 long *top;
9 message m;
11 m.m2_l1 = *top;
12 return(_syscall(MM, STIME, &m));