repo.or.cz
/
minix3-old.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Added lance entry to drivers.conf.
[minix3-old.git]
/
lib
/
posix
/
_stime.c
blob
7158019d51e48b62e69372e551e369e9f1e2af4c
1
#include <lib.h>
2
#define stime _stime
3
#include <minix/minlib.h>
4
#include <time.h>
5
6
PUBLIC
int
stime
(
top
)
7
long
*
top
;
8
{
9
message m
;
10
11
m
.
m2_l1
= *
top
;
12
return
(
_syscall
(
MM
,
STIME
, &
m
));
13
}