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