Add support for using time64 on big-endian machines.
[uclibc-ng.git] / libc / sysdeps / linux / common / syncfs.c
blob5be63f01778aa3af7c81b4110fceff6a2910692a
1 /*
2 * Copyright (C) 2015 Bartosz Golaszewski <bartekgola@gmail.com>
4 * Licensed under the LGPL v2.1, see the file COPYING.LIB in this tarball.
5 */
7 #include <sys/syscall.h>
9 #if defined(__NR_syncfs) && __USE_GNU
10 #include <unistd.h>
11 _syscall1(int, syncfs, int, fd)
12 #endif