Gitiles
Code Review
Sign In
gerrit.nordix.org
/
codeaurora
/
busybox
/
8759006b55c617811a207cc4e99792996c8b97fb
/
.
/
sync.c
blob: 572d749245972afa18ff1c42586400e72829f4e5 [
file
] [
log
] [
blame
]
#include
"internal.h"
#include
<stdio.h>
extern
int
sync_main
(
int
argc
,
char
*
*
argv
)
{
if
(
**(
argv
+
1
)
==
'-'
)
{
fprintf
(
stderr
,
"Usage: sync\nWrite all buffered filesystem blocks to disk.\n"
);
exit
(
FALSE
);
}
return
sync
();
}