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
/
_sync.c
blob
2d803a4b42cfe7bf655ea13d4a3e295056f7be34
1
#include <lib.h>
2
#define sync _sync
3
#include <unistd.h>
4
5
PUBLIC
int
sync
()
6
{
7
message m
;
8
9
return
(
_syscall
(
FS
,
SYNC
, &
m
));
10
}