repo.or.cz
/
uclibc-ng.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add support for using time64 on big-endian machines.
[uclibc-ng.git]
/
libc
/
sysdeps
/
linux
/
common
/
sync.c
blob
6a569078a69d36d08a43816eaf956ce7f48c0cd2
1
/*
2
* sync syscall for uClibc
3
*
4
* Copyright (C) 2000-2006 Erik Andersen <andersen@uclibc.org>
5
*
6
* Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
7
*/
8
9
#include <sys/syscall.h>
10
11
#if defined __USE_BSD || defined __USE_UNIX98
12
# include <unistd.h>
13
_syscall0
(
void
,
sync
)
14
#endif